Definition: You can use GoTo to skip over a section of code and go to the specified location. This only became available in PHP 5.3 so if it does not work for you, please check your PHP version. As this is not a function you don't need parenthesis ().
Also Known As: Go To
Examples:
<?php
goto a;
echo 'Hello';
a:
echo 'Goodbye';
?>
This would only output Goodbye.



