Welcome Guest, Not a member yet? Register   Sign In
Two Submit Buttons in Forms
#10

[eluser]dimethroxy[/eluser]
[quote author="Nick Husher" date="1226456839"]Note that you could just name the buttons the same thing with different values:
Code:
//HTML
<input type="submit" value="Save" name="submit_action" />
<input type="submit" value="Save and Finish" name="submit_action" />

Code:
//PHP
$action = $this->input->post('submit_action');

if($action == 'Save') {
...
} else if($action == 'Save and Finish') {
...
}
[/quote]

This is actually the best method.


Messages In This Thread
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 01:59 PM
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 02:43 PM
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 02:53 PM
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 03:00 PM
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 03:12 PM
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 03:15 PM
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 03:31 PM
Two Submit Buttons in Forms - by El Forum - 11-10-2008, 05:04 PM
Two Submit Buttons in Forms - by El Forum - 11-11-2008, 02:27 PM
Two Submit Buttons in Forms - by El Forum - 11-11-2008, 04:26 PM



Theme © iAndrew 2016 - Forum software by © MyBB