Without seeing the code, it's hard to provide specific suggestions... generally the solution when register_globals is off is that form variables need be to referenced as $_POST['varname'] instead of $varname and variables passed via the URL (seen in address bar) need to be referenced as $_GET['varname'] instead of $varname
$_REQUEST['varname'] may also work as well.
Hope that helps some.
