I'm designing a user preferences webpage and now I've placed two save buttons, one to save a new changed password, and other to save other kind of user preferences. My doubt is that I'm not sure if this is the more accessible and usable way to implement it. I would hear opinions about what is the best option and why, because I haven't found any clear direction about this issue in the web.

link|improve this question
Any reason you don't use separate forms? – SpaceBeers Jan 9 at 11:31
This isn't an "air your opinions" kind of site. Please read the faq. – Cody Gray Jan 9 at 11:33
Sorry to annoy you Cody Gray, but the question is about web design, not opinions. I've used the opinion word only to express my understandings, please don't misunderstand my words. – sucotronic Jan 9 at 12:46
SpaceBeers, there isn't enough data to split the screen in two. Thanks for suggestion. – sucotronic Jan 9 at 12:47
How are you processing the form? PHP? JS? – SpaceBeers Jan 9 at 17:24
show 2 more comments
feedback

closed as not constructive by Cody Gray, Robert Harvey Jan 10 at 17:44

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

up vote 0 down vote accepted

Ok so if you've got a form like so:

<form action="YOUR_PAGE" method="POST">

    <label>Field 1: </label><input type="text" name="form_field_1" />
    <label>Field 2: </label><input type="text" name="form_field_2" />

    <input type="submit" name="submitFieldOneOnly" value="Submit field 1" />
    <input type="submit" name="submitFieldTwoOnly" value="Submit field 2" />
</form>

You need to run different code depending on which button was pressed you can use the following PHP code on the page your form submits to:

<?php
    if (isset($_POST['submitFieldOneOnly'])) {
        //Submit button one was pressed
        echo $_POST['form_field_1'];
    }

    if (isset($_POST['submitFieldTwoOnly'])) {
        //Submit button two was pressed
        echo $_POST['form_field_2'];
    }
?>

This should be more than enough to do what you're after.

link|improve this answer
Thanks SpaceBeers. I already have the form this way, but from user (accessibility) I'm not sure if it's the best way to do it. – sucotronic Jan 11 at 9:55
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.