Codeigniter - Grab value from dropdown pass to controller
09:13 18 Apr 2013

I am trying to pass a value from a form which has 3 options so when the user clicks on any of the options it should pass the value to the controller.

I am thinking maybe i can have something like `onChange="selectedValue". I tried to grab the post from the view but it did not work.

Any help would be appreciated

View

            
            

Controller

public function about()
{
    $search = $this->input->post('hours');

    echo $search;

    $this->load->view("about");
}
php codeigniter