My webhosts decided to turn Register Globals off so now some of my scripts do not work.
I have worked out that If I am posting from a form I need to get the variables on the next page like this
$name = $POST['name']
$address = $POST['address']
$town = $POST['town']
$email = $POST['email']
and so on so these can be passed to my email script.
What I wanted to know is, if there is an easier way of grabbing these variables each time, otherwise I would need to do this for every single variable that exists in my email script.
Thank you
Adrian