Using HTML forms to collect variables and send them to php scripts is not working. Once the form is sent the variables in the php script are emtpy.
What is causing this?
Have you turned on register globals in your php.ini? If you don't turn these on you won't be able to include variables in urls
However you can access these from the superglobal array $_POST (if your version of PHP is older then 4.1.0, if not you must use $HTTP_POST_VARS)
http://be.php.net/manual/en/reserved.variables.php#reserved.variables.post
Bruno
Well, $_GET[] for variables in URLs. Either way, don't turn register_globals on if you can help it.