countdrac Posted September 30, 2007 Share Posted September 30, 2007 hi, ive looked at a few forums and stuff on this and ive tried everything but i cant get it to work... im trying to use multiple submits either to redirect to another page or even just to get me to the same page but to be able to distinguish which button was pressed (theres a save and a preview) <form action="next.php" method="post"> <input type="text" name="name"> <input type="submit" value="submit" id="submit"> <input type="submit" value="preview" id="preview"> </form> and then next.php contains: if ($_POST['submit']) { echo "test1"; } else if($_POST['preview']) { echo "test2"; } else { echo "broken <br />"; } so when i try to access $_POST['submit'] the whole thing crashes! thanks for the help Quote Link to comment https://forums.phpfreaks.com/topic/71241-multiple-submit-buttons/ Share on other sites More sharing options...
hvle Posted September 30, 2007 Share Posted September 30, 2007 <form action="next.php" method="post"> <input type="text" name="name"> <input type="submit" value="submit" name="submit"> <input type="submit" value="preview" name="preview"> </form> that code will help you achieve above goal, however, to make it more safe: if (isset($_POST['submit'])) { echo "test1"; } else if(isset($_POST['preview'])) { echo "test2"; } else { echo "broken "; } Quote Link to comment https://forums.phpfreaks.com/topic/71241-multiple-submit-buttons/#findComment-358334 Share on other sites More sharing options...
countdrac Posted September 30, 2007 Author Share Posted September 30, 2007 ye but it doesnt work... when i try through localhost - firefox crashes and ie displays the "broken" message Quote Link to comment https://forums.phpfreaks.com/topic/71241-multiple-submit-buttons/#findComment-358337 Share on other sites More sharing options...
countdrac Posted September 30, 2007 Author Share Posted September 30, 2007 hey the problem was i couldnt use id="submit" i changed id to name and submit to submitb and it worked Quote Link to comment https://forums.phpfreaks.com/topic/71241-multiple-submit-buttons/#findComment-358350 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.