This should be followed by the following warning as it appears in the PHP.INI
"You should do your best to write your scripts so that they do not require
register_globals to be on; Using form variables as globals can easily lead
to possible security problems, if the code is not very well thought of."
Better to do
- $_GET[joke]
- extract($_GET)