Forum Moderators: coopster
With register_globals off, to access variables from the query string of your URL, you need to:
$variable_name = $_GET['variable_name'];
From forms with method='post', you can access variables like:
$variable_name = $_POST['variable_name'];
It's good security to have register_globals off, but if you want to turn them on to make your current scripts work until you make the modifications, open your php.ini file and search for "register_globals". Then change the line to:
register_globals = on
Assuming you're running Apache, you'll then have to restart Apache for the change to take effect.
I hope this helps.