Parse error: syntax error, unexpected T_STRING
Error :
Parse error: syntax error, unexpected T_STRING in /home/username/public_html/index.html on line 1
On php Suexec server copy php.ini to the location where you are getting above error and change short_open_tag value as given below
short_open_tag = X
On Non php Suexec server you have to add the following code in .htaccess file
php_flag short_open_tag X
|