[PHP] Special Characters in a String for Output

2009-08-27 Thread David Stoltz
I have: $goalString = p align=leftGoals Entered By .$mymanager./ppOn .$when.:/pp align=left.$mygoal./p; Which outputs in this A tag: a href=# onmouseover=applyDMXTooltip(this,'?php echo $goalString; ?','normal','linear','mouse','out',1,1,'mouseout','yellow',false,'','',

Re: [PHP] Special Characters in a String for Output

2009-08-27 Thread Bastien Koert
On Thu, Aug 27, 2009 at 9:56 AM, David Stoltzdsto...@shh.org wrote: I have: $goalString = p align=leftGoals Entered By .$mymanager./ppOn .$when.:/pp align=left.$mygoal./p; Which outputs in this A tag: a href=# onmouseover=applyDMXTooltip(this,'?php echo $goalString;

[PHP] Special characters

2005-05-16 Thread Carlos Palomino
Hi everyone, I have just begun writing PHP web-pages and I have come across an interesting issue. Whenever I use special characters within my code such as: a ©, the character displays as a ?. All other text and characters display properly, so I am not certain why some special marks do not

Re: [PHP] Special characters

2005-05-16 Thread Brian V Bonini
On Mon, 2005-05-16 at 12:23, Carlos Palomino wrote: Hi everyone, I have just begun writing PHP web-pages and I have come across an interesting issue. Whenever I use special characters within my code such as: a ©, the character displays as a ?. Because that's not valid HTML... See:

[PHP] Special characters

2003-02-19 Thread Kim Kohen
G'day all, I have a directory with an Ÿ (mac Option-F) in the name which PHP processes as Ä. This change renders the files in the directory unopenable (the path is bad). Is there some sort of encoding/unencoding which will handle this character correctly? I've tried every form of encoding I can

Re: [PHP] special characters

2002-08-10 Thread Justin French
Have a look at htmlspecialchars() as well. If these don't meet your needs, you might have to start building your own function to extend what htmlspecialchars() and htmlentities() do. Justin French on 10/08/02 4:58 AM, Jeb A. Scarbrough (home) ([EMAIL PROTECTED]) wrote: Is there a way to

[PHP] special characters

2002-08-09 Thread Jeb A. Scarbrough \(home\)
Is there a way to have PHP to either: a) strip out any non-standard ascii characters (like the TM or copyright symbol) b) have PHP encode all these symbols. I know about htmlentities, but it not catch everything. Thanks!

Re: [PHP] special characters

2002-08-09 Thread Analysis Solutions
On Fri, Aug 09, 2002 at 02:58:26PM -0400, Jeb A. Scarbrough (home) wrote: a) strip out any non-standard ascii characters (like the TM or copyright symbol) preg_replace() or ereg_replace(). b) have PHP encode all these symbols. I know about htmlentities, but it not catch everything.

[PHP] special characters with perl,mysql,php

2001-02-23 Thread Mitchell Hagerty
Hey All, What would be a good method for inserting data into a blob field that contained special characters using perl then retrieving that data with php? URI::Escape has worked well with perl but now that php has gotten into the picture I need a new method. any suggestions? tks mitch --

Re: [PHP] special characters with perl,mysql,php

2001-02-23 Thread Joe Stump
What type of special characters? --Joe On Fri, Feb 23, 2001 at 08:54:09PM -0600, Mitchell Hagerty wrote: Hey All, What would be a good method for inserting data into a blob field that contained special characters using perl then retrieving that data with php? URI::Escape has worked

Re: [PHP] special characters with perl,mysql,php

2001-02-23 Thread Kyndig
If your refering to: ' or " just use: addslashes($value); to escape special characters. On Fri, 23 Feb 2001, Mitchell Hagerty wrote: Hey All, What would be a good method for inserting data into a blob field that contained special characters using perl then retrieving that data with

RE: [PHP] special characters with perl,mysql,php

2001-02-23 Thread ..s.c.o.t.t..
lto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 18:54 To: [EMAIL PROTECTED] Subject: [PHP] special characters with perl,mysql,php Hey All, What would be a good method for inserting data into a blob field that contained special characters using perl then retrieving that data with

[PHP] Special Characters

2001-01-11 Thread TV Karthick Kumar
PHP 3.0.17 with Oracle db Hi all, I am working on a search functionality where in I dont' get the exact search results if the user types in a name with special characters like: med vnlig hlsning, Antnio etc. and characters like: I dont' know whether there's any built in functions