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

[eluser]Nick Husher[/eluser]
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') {
...
}


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