Question

How to get values from dropdown list when option is selected and trigger the submit button immediately. I can do it in php but i want to do it using kohana but no idea. I am new to it and using kohana 3.2.

Was it helpful?

Solution

In a Kohana controller you would use the request object to access the POST data. For example:

$selectedValue = $this->request->post('dropdownlist');
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top