Actually, yes, that is a typo in this message, but not in the original program. I found the problem to be this:
My first echo statement was something like:
echo "Hello world';
Then, later on in the program I had another echo statement like:
echo "The world is cruel";
The problem, ultimately, is that the first echo statement starts with double quotes (") and ends with a single quote ('). Since PHP ignores line-breaks and spacing, and since it doesn't do any processing on anything inside of double quotes (except backslash), it thought everything between the first double quote in the first statement and the first double quote in the next statement was part of the quote.
So, it gave an error on the second line, which looked like the following to it:
The world is curel";
Joel