I've got a page that submits some fields to another page.
When I say: echo $_POST[field3];
I get nothing...
I thought maybe they weren't passing so I changed the method to GET and the environment variable to $_GET[field3]... it still won't echo. But all the info is passed to the URL address bar...
Now, the only exception is when the entered field is a single word or number. If it's '5' or 'Hello', it's fine... but when it's a multi word string i get no luck.
Does anyone have any ideas?