03-07-2009, 10:53 PM
|
#7 (permalink)
|
|
The Contributor
Join Date: Feb 2009
Posts: 64
Thanks: 1
|
Got this error last week to. What I had done was the following:
PHP Code:
print <<< END
Talk PHP rules :)
END;
and that is how it should like:
PHP Code:
print <<< END
Talk PHP rules :)
END;
The Token at the end may not have any tabs or spaces. -> So it didnt close the string - and gave that error to.
|
|
|
|