Hi folks,
I have a problem here in that a simple contact form submission tool that I developed on a test server with register_globals OFF won't work on a server that has register_globals ON. The problem is that none of the variables are getting passed for processing when sent through POST method.
I am confused as to why it won't work on a server with register_globals turned On. I thought that register_globals simply added the shortcut utility but wouldn't effect any statements that still tried to access the POST array variables directly (ie $name = $POST['name']; )
Can anyone tell me if it should be the case that simply turning register_globals ON would cause an application to stop working?
Any help would be greatly appreciated. Thanks!