moose-en-a-gant Posted January 10, 2015 Share Posted January 10, 2015 I think I understand that there can only be one "submit" button on a page. I want buttons for separate forms to not trigger the empty errors on the other forms... How do you accomplish specific button actions? I think I've tried it with javascript but you can do it with PHP right? Thanks for any help. Quote Link to comment Share on other sites More sharing options...
Solution CroNiX Posted January 10, 2015 Solution Share Posted January 10, 2015 You can have multiple submits...just give them different values <input type="submit" name="submit" value="delete" /> <input type="submit" name="submit" value="add" /> <?php if (isset($_POST['submit'])) { //form was submitted (name = submit) $action = $_POST['submit']; if ($action == 'delete') { //the submit with value of "delete" was pressed } else if ($action == 'add') { //the submit with value of 'add' was pressed } } Quote Link to comment Share on other sites More sharing options...
moose-en-a-gant Posted January 10, 2015 Author Share Posted January 10, 2015 What about target? I just used a paypal button and I saw this : <form target="paypal" action=" " method="post"> Quote Link to comment Share on other sites More sharing options...
CroNiX Posted January 10, 2015 Share Posted January 10, 2015 whats the question about target? Perhaps you should be looking these up in the HTML specs so you know what's legal/valid and what they do? https://developer.mozilla.org/en-US/docs/Web/HTML/Element http://www.w3.org/TR/html5/ Quote Link to comment Share on other sites More sharing options...
moose-en-a-gant Posted January 10, 2015 Author Share Posted January 10, 2015 Okay thank you. I think your initial respons is what I am after. Quote Link to comment 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.