Thread: Coding errors
View Single Post
Old 03-07-2009, 10:53 PM   #7 (permalink)
Sakakuchi
The Contributor
 
Sakakuchi's Avatar
 
Join Date: Feb 2009
Posts: 64
Thanks: 1
Sakakuchi is on a distinguished road
Default

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.
Sakakuchi is offline  
Reply With Quote