View Single Post
Old November 11th, 2007, 1:29 AM   #13 (permalink)
MarkRH
Race Surpass
Super #1
 
MarkRH's Avatar
 
Joined in Jul 2006
Lives in Oklahoma City, OK
Hosted on sh102
1,222 posts
Gave thanks: 18
Thanked 86 times
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.
MarkRH is offline   Reply With Quote