can you tell me why i m getting this error on my php script that i am making. i have web hosting with www.webune.com and i don't know why i am getting this error, does it have to do with the server or is it me?
Update by Admin:
ANSWER:
if you are getting this error, you are most likely missing the ; at the end of the line
Comments and replies About Fix Error Parse error: parse error, unexpected T_VARIABLE in PHP Problems
hostman:
can you give show me the previous and next 10 lines of your script so i can troubleshoot it...
maco:
this is how it looks like:
$pagtitle = 'this is my page title'
echo $pagtitle;
if($mac == true) { return false;}
hostman:
can you see the problem...
look at the line where it says:
$pagtitle = 'this is my page title'
you need to end your line with a semicolon (;)
so your line should look like this:
$pagtitle = 'this is my page title';
its not the server or the service. webune is known to have a really good service.
maco:
ok, thanks, that worked.
thanks for your support.
jagadeeshstel:
parse error: syntax error, unexpected t_variable in c:\xampp\htdocs\web\testlog.php on line 9
himanshu:
thanks for the help.
Iwant to know "What is mean by t_variable?".