Since PHP 4.2.x variables passed from one script to another are not globally available. You have to use $_POST['varname'] to access the variables that you are trying to use.
But, if you would like to use these variables in a global manner, you can use the
import_request_variables("gpc","user");
In this example, the gpc means that you will import get THEN post THEN cookie variables. This is important because you may have variables in each scope with the same name and the latter ones.
In order to not conflict with any variables you may be using in your own script, use the second parameter to rename the variables.
I hope this helps explain things a little.