Welcome Guest, Not a member yet? Register   Sign In
Single html Form With Multiple Submit Buttons
#7

[eluser]umefarooq[/eluser]
you can't use multiple buttons to submit form only one button can work at one time but you can have multiple submit button on one page for one form with same name but different value for example

Code:
<form action="welcome/action">
<input type="submit" name="actionbtn" value="create" />
<input type="submit" name="actionbtn" value="preview" />
  </form>

now in your action get the button value if you are using CI

$action = $this->input->get_post("actionbtn");
switch($action){
case 'create':
    $this->create();
break;
case 'preview':
  $this->preview();
break;

call create or preview function of controller
}


Messages In This Thread
Single html Form With Multiple Submit Buttons - by El Forum - 12-10-2010, 03:34 PM
Single html Form With Multiple Submit Buttons - by El Forum - 12-10-2010, 04:30 PM
Single html Form With Multiple Submit Buttons - by El Forum - 12-11-2010, 03:36 AM
Single html Form With Multiple Submit Buttons - by El Forum - 12-11-2010, 04:07 AM
Single html Form With Multiple Submit Buttons - by El Forum - 12-11-2010, 06:55 AM
Single html Form With Multiple Submit Buttons - by El Forum - 12-11-2010, 08:40 AM
Single html Form With Multiple Submit Buttons - by El Forum - 12-12-2010, 12:45 AM
Single html Form With Multiple Submit Buttons - by El Forum - 12-12-2010, 12:45 AM
Single html Form With Multiple Submit Buttons - by El Forum - 08-04-2012, 09:08 PM
Single html Form With Multiple Submit Buttons - by El Forum - 08-08-2014, 06:39 PM
Single html Form With Multiple Submit Buttons - by El Forum - 08-08-2014, 09:02 PM
Single html Form With Multiple Submit Buttons - by El Forum - 08-09-2014, 12:18 PM
Single html Form With Multiple Submit Buttons - by El Forum - 08-09-2014, 01:19 PM
Single html Form With Multiple Submit Buttons - by El Forum - 08-09-2014, 07:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB