http://www.faressoft.org/test/hello.php
My code is:
<?php
echo "hello World";
goto end;
echo "before end";
end:
echo "end";
?>
Error: Analysis error: syntax error, unexpected T_STRING in / home / alfalah 1 / public_html / faressoft.org / test / hello.php on line 3
It works fine in my localhost, but doesn't work on justhost server? why?
source
share