PHP Parse error unexpected T_STRING
Jul 01, 2009 - by kurinchilamp / / Post Comment
Sample error message that you may have come across when designing php pages ...
Parse error: syntax error, unexpected T_STRING in C:\wampserv\www\my_program.php on line 4
Solution:
Check your program to see if there is a missing semi-colon at the end of line 3. Php need the character ";" at the end of the statements to indicate the end of php command.
Continue Reading