<?php
/* This usually occurs because you have either missed to put a semi-colon
or a comma or a single-quote or double-qoute in a statement */
#Make sure to not forget that!
?>
//usually this means missing ' or " in a statement
echo 'xyz; //this will cause unexpected t_string error
echo 'xyz 'ax'';//this will cause unexpected t_string error
//Use proper fomat
<?php
//your code
?>