Hi all When u submit a php form with nothing in the action = "" and using the method POST, where will the page go. thanx IM
nowhere
Technically, not "nothing." All values will be posted to the next page, which will be the same page you are currently viewing. It will simply reload with those values.
Can i use the header "location: pathtofile\file.php" to handle the submit button.
No, that wouldn't work. If you're looking for another way to do it, I think there's a Javascript way.
Why don't you just use "file.php" as your action? Then in that file you put all your code for handling the data, and some HTML so the user has something to look at after hitting "SUBMIT".
-Elizabeth