Welcome Guest, Not a member yet? Register   Sign In
how to save the data from the listbox to the database
#10

[eluser]khagendra[/eluser]
Here is modification of your view file v_example.php to submit all the selected values

-- view (v_example.php) --
Code:
<form action="<?=site_url('example/multiple')?>" method="post">
    <SELECT NAME="sections[]" MULTIPLE>
    <OPTION value="Web Authoring Reference">Web Authoring Reference</OPTION>
    <OPTION value="FAQ Archives">FAQ Archives</OPTION>
    <OPTION value="Design Elements">Design Elements</OPTION>
    <OPTION value="Tools">Tools</OPTION>
    <OPTION value="Feature Article">Feature Article</OPTION>
    </SELECT>
    
    &lt;input type="submit" value="Submit" /&gt;
&lt;/form&gt;

-- Controller (example.php) --
Code:
class Example extends Controller {
    
    function Example()
    {
        parent::Controller();
        $this->load->helper('url');
        $this->load->library('form_validation');
    }
    
    function index()
    {
        $this->load->view('v_example');
    }
    
    function multiple()
    {
        foreach($_POST['sections'] as $sec)    
        echo $sec."<br>";    
    }
}

I have listed the selected values form the list.
Hope this will help u

Enjoy! :-)


Messages In This Thread
how to save the data from the listbox to the database - by El Forum - 10-27-2009, 10:03 PM
how to save the data from the listbox to the database - by El Forum - 10-27-2009, 10:40 PM
how to save the data from the listbox to the database - by El Forum - 10-28-2009, 03:12 AM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 03:16 AM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 07:05 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 07:08 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 07:34 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 07:39 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 07:48 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 08:15 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 08:15 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 08:26 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 08:27 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 08:31 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 08:37 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 09:20 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 10:35 PM
how to save the data from the listbox to the database - by El Forum - 10-29-2009, 10:35 PM



Theme © iAndrew 2016 - Forum software by © MyBB