Pergunta

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.

Foi útil?

Solução

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

$selectedValue = $this->request->post('dropdownlist');
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top