I recently upgraded to PHP 4.2.1. Before when variables were passed in a form to a script, the script saw them. However, now I must use HTTP_GET_VARS or HTTP_POST_VARS to retrieve them. Is there anyway I can change this back to the way it was?
you need to set register_globals=on in your php.ini However this has been changed to no by default as there are potential security issues.
Thanks for the help, I was thinking it may be due to security, and since it is, I guess I will just have to find another way of doing things. Thanks again for the help.