Frage

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.

War es hilfreich?

Lösung

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

$selectedValue = $this->request->post('dropdownlist');
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top