Can you post some code? Are you trying to grab the variables from your form by just using $varname
or are you using $_POST['varname'] or for older version of PHP $HTTP_POST_VARS['varname']
I'd try calling the variable using the $_POST method first. If that doesn't work, try calling it using $HTTP_POST_VARS['varname']
This is assuming the method on your form is set to POST.
Cgraz