Quote:
Originally Posted by CSGCarl
Hey,
I'm still having a problem I've fixed other but...
Error:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/-----/public_html/homepage.php on line 1016
And line 1016 is:
Code:
Code:
echo "Your not logged in so we display this";
I can't see whats wrong there.
If some one could help me out this would be great.
Regards,
Carl
|
This line here
needs to be
The end " is part of the PHP statement and not the enclosed HTML so it should not be escaped, else you will get an error pointing to the next line of code that has another " in it.
(Escaping the " ment that you never ended that PHP statement correctly)