I have this error:
Parse error: syntax error, unexpected T_STRING in /home/u1/public_html/scripts/easypanel.php on line 192
When i run that on the local it's work, but on the real server it's not:
line 192 is:
if(isset($_POST['send_pass']))
{
if($_POST['post_password'] == $password)
{
goto content;# = line 192
}
else
{
echo '<div class="box error">password incorrect</div><br>';
}
}
...
content:
echo $content;
What's the problem?
<?php phpinfo() ?>T_STRINGwhen there is no string on that line or the previous (except the array key, which is valid). You're sure that is 192?include? the line number may not be correct. Remove that line from your code and see if it still complains