how do I turn register_globals on?
It's in your "php.ini" file (if you can access it).
you can use the following function
ini_set
or if you have access to apache .htaccess files you could use
php_value varname varvalue php_flag varname varvalue
but i wouldn't recommend using .htaccess
Hope this helps
Don't!!!!
yeah, don't... you should write your scripts so you don't need it.
for example, if you are passing form variables, use the $GET[name] and $POST[name] variables for method="get" and method="post" respectively