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 --