View Single Post
  #2  
Old 08-19-2006, 10:32 AM
ashley ashley is offline
OSP Starters
 
Join Date: Mar 2006
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
ashley is on a distinguished road
Default

unexpected T_STRING is a php error. you are not escaping your quotes

PHP Code:
$a = "as" af";

is invalid, if you want to have quotes in there, you have to escape them

PHP Code:
$a = "as\" af";

or end the quotes

PHP Code:
$a = "as ".time()." af";

Hope I was of little help -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - Error in select statement
View Single Post
  #2  
Old 08-19-2006, 10:32 AM
ashley ashley is offline
OSP Starters
 
Join Date: Mar 2006
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
ashley is on a distinguished road
Default

unexpected T_STRING is a php error. you are not escaping your quotes

PHP Code:
$a = "as" af";

is invalid, if you want to have quotes in there, you have to escape them

PHP Code:
$a = "as\" af";

or end the quotes

PHP Code:
$a = "as ".time()." af";

Hope I was of little help -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote