Be careful so that you don't type "." instead of ";" at the end of a line.
It took me more than 30 minutes to debug a long script because of something like this:
<?
echo 'a'.
$c = 'x';
echo 'b';
echo 'c';
?>
The output is "axbc", because of the dot on the first line.