Im running Apache2 with PHP Version 5.2.6-3ubuntu4.5. Everything seems working, except 'GOTO' its so strange and I cant figure out what im doing wrong. I made very simple script with GOTO called test.php:
<?php
goto a;
echo 'Foo';
a:
echo 'Bar';
?>
and I get this error "Parse error: syntax error, unexpected T_STRING in /home/web/test.php on line 2"
Can anyone help me with this?