I've got a view with a form, so when user submits it - could anyone give me a link or a simple example of code Documentation and tutorials for Kohana 3 are so poor against CI .
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Another way to access post data in Kohana
|
|||
|
|
|
In Kohana 3.1 you should use Request->post():
or if in your controller:
Since Kohana is HMVC, you can call sub-requests with dedicated post data, so using the superglobal $_POST is discouraged, since it's not unique to the request. |
|||||
|
Small Example. You can implement all the validations in the model using protected. Thank you |
|||
|
|