hi!
this doesn't seem to work on my page:
import_request_variables("gP", "rvar_");
print $rvar_XXXX;
anything after the import sentence is igored. How come?
is there another way of retrieving GET and POST vars?
obscurr
Well, did you try using a name/value pair like say "rvar_XXXX=hello" to test?
Other ways would be extract() and accessing them directly, like $_POST['rvar_XXXX'] or something.