Most voted "kohana" questions
Kohana is a framework for PHP, its main feature is the use of HMVC with a predefined structure that autoload your PHP files. The loading hierarchy is in sequence System/Modules/Application, making it efficient in extending its components.
Learn more…8 questions
Sort by count of
-
3
votes1
answer1599
viewsReturn to the previous screen after registering using Kohana
I have a screen where I receive a parameter (id) and from it I mount a form. After saving this form I need to go back to the previous screen to display what was saved. How can I do this? I’ve tried…
-
3
votes1
answer90
viewsHow to call CSS files using Kohana PHP 3.3
I’m a beginner in Kohana Framework and would like to know how do I call a CSS file.
-
3
votes2
answers4972
viewsHow to make a form with date field? (DD/MM/YYYY)
I am a beginner in Kohana and need to make a form with a date field. My form is this: <?=form::open('controllerInscricao/index')?> <?php echo form::select('TURMA_codturma',…
-
2
votes1
answer179
viewsAfter doing Insert, redirect to the list of records in Kohana
I started working with Kohana yesterday and I got a problem here. My default Controller is the "page" and the action is "home". In the "page" Controller I have these functions here to mount the…
-
2
votes1
answer59
viewsPass two arrays to a view in Kohana
I need to pass two arrays to a view, it is possible to do this? Arrays are created as follows: $cliente = ORM::factory('cliente')->where('id', '=', $id)->find(); $usuario =…
-
1
votes1
answer91
viewsCount results from a select in Kohana
Would you like to know how I count the results of a select in Kohana? I have this code: public function action_verification() { $login = $this->request->post('login'); $senha =…
-
1
votes1
answer80
viewsProtect pages that are loaded inside the template - Kohana
I’m doing an admin here who blows their pages. I know how to allow them to be accessed only after login, but I don’t know if the way I’m doing it is the right way. Look at the Template: class…
-
1
votes1
answer60
viewsMigrate Kohana to Laravel
In kohana bootstrap I have the following configuration Kohana::init(array( 'base_url' => 'myapp', )); How I migrate her to the Laravel ? Because in Laravel I have the following url…