master82 Posted June 19, 2006 Share Posted June 19, 2006 I have a form on my page, I've made it so when the submit button is clicked it loads up itself (page with the form you just filled in).I need to change my PHP code at the top of this page to act on the POST data if the submit has been pressed only so...Is it possible to do something like:if(formname = submit) {process data} else {whatever...Thanks in advance [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] Quote Link to comment https://forums.phpfreaks.com/topic/12418-submitting-to-same-page/ Share on other sites More sharing options...
Ferenc Posted June 19, 2006 Share Posted June 19, 2006 [code]<?phpif(isset($_POST['Submit'])){ // name of the submit button //process form}else{ // display the form}?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/12418-submitting-to-same-page/#findComment-47474 Share on other sites More sharing options...
AndyB Posted June 19, 2006 Share Posted June 19, 2006 [code]<?phpif (isset($_POST['submit'])) {// process this} else {// whatever}[/code]... assuming your form uses the POST method and that your submit input is named 'submit' Quote Link to comment https://forums.phpfreaks.com/topic/12418-submitting-to-same-page/#findComment-47475 Share on other sites More sharing options...
master82 Posted June 20, 2006 Author Share Posted June 20, 2006 Thanks - will try it now [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] Quote Link to comment https://forums.phpfreaks.com/topic/12418-submitting-to-same-page/#findComment-47569 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.