Re: [PHP] Missing characters [SOLVED]

2006-02-06 Thread Fernando Anchorena
Thanks to all.. Regards, FA. Brady Mitchell wrote: Example Page1.php === $name_pro = "VC++ V2.4" print " href='page2.php?page=&value=$name_pro'> $name_pro "; Use urlencode (http://php.net/urlencode): print " $name_pro ";

Re: [PHP] Missing characters

2006-02-06 Thread Tom Rogers
Hi, Tuesday, February 7, 2006, 9:01:18 AM, you wrote: FA> I need a helping hand to solve this FA> Example FA> Page1.php FA> === FA> $name_pro = "VC++ V2.4" FA> print " href='page2.php?page=&value=$name_pro'> $name_pro "; FA>

RE: [PHP] Missing characters

2006-02-06 Thread Brady Mitchell
> Example > Page1.php > === > $name_pro = "VC++ V2.4" > print " $name_pro "; Use urlencode (http://php.net/urlencode): print " $name_pro "; Brady -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

[PHP] Missing characters

2006-02-06 Thread Fernando Anchorena
I need a helping hand to solve this Example Page1.php === $name_pro = "VC++ V2.4" print " href='page2.php?page=&value=$name_pro'> $name_pro "; === Page2.php =

Re: [PHP] Missing characters when processing scripts

2005-06-30 Thread Richard Lynch
On Thu, June 30, 2005 11:04 am, Charlene said: > I have a semi -random problem that characters in the php script are > dropped. A very noticible instance is in a statement like: > > $query = "SELECT junk FROM table"; > $result = mysql_query( $query, $handle) or die (mysql_error()); > > I get an e

[PHP] Missing characters when processing scripts

2005-06-30 Thread Charlene
I have a semi -random problem that characters in the php script are dropped. A very noticible instance is in a statement like: $query = "SELECT junk FROM table"; $result = mysql_query( $query, $handle) or die (mysql_error()); I get an error message from the die function like: "Error SE