I\'m fairly new to php and I\'m using a script that creates a function called the \"mime_mailer\" which essentially allows me to use PHP to send emails that are able to be desig
A side note, but might well help someone: a bad git merge can cause this. Consider:
function foo <<<<<<< HEAD $bar = 1; <<<<<<< e0f2213bc34d43ef $bar = 2;
The PHP parser would produce the same error.
Source: just got bit by this ;)