I\'ve always used cURL for this sort of stuff, but this article got me thinking I could request another page easily using the Request object in Kohana 3.
In Kohana V3 is it possible to return result set as an array() or any method exists? For example: $user 开发者_开发技巧= DB::select(\'*\')->from(\"users\")->where(\'username\', \'=\', $usernam
Could anybody brief about user_token functionality in Auth module? What is a use开发者_JAVA百科 and how this incorporates in Auth module?It is used when a user checks the \'Remember me\' box on your s
I am using Kohana V 3.0.3. I was looking for ACL library and found from http://dev.kohanap开发者_如何学JAVAhp.com/projects A2 Kohana\'s ACL module.
OK, I hope this is my last question about CRON jobs and Kohana 3. Note: others are not duplicates, just other problems.
I\'ve set up a CRON to call a URL in Kohana 3. php /home/user/public_html/index.php my/route/in/bootstrap.php
Is it possible to make restful services with kohana 3 , i reviewed the source and found an abstract class Kohana_Controller_REST, how to use it ? If someone can post a snippet with routing as Example
In my bootstrap.php I have the following: if($_SERVER[\'SERVER_NAME\'] == \'localhost\') Kohana::$environment = \'development\';
What are the Val开发者_C百科idate::label and Validate::labels functions for in Kohana 3? What are they meant to be used for?When you use the Validation class, the label() and labels() methods are to s
My current code is this $swift = email::connect(); $swift->setSubject(\'hello\') ->setFrom(array(\'alex@example.com.au\' => \'Alex\'))