Forum Moderators: coopster
Are there errors? Are you accessing the variables like so $_POST['varname']?
If it works with register_globals on then I can only guess that you are not accessing them using the $_POST only by their name.
Another thing you could try is turn off register_globals and put extract($_POST) at the top of the script and see if it works that way.