how can i specify height and width of an image if i use html::image() in koahana 3. if i pass all attributes in an array it saysthat string expected instead of array ......please help
I am trying to return custom status codes using Kohana 3.1开发者_如何学C, like so : $this->response->status(420);
This won\'t work in Kohana 3开发者_Python百科.2 for some reason: $this->request->headers[\'Content-Type\'] = \'text/xml\';
it gives error\"ErrorException [ Notice ]: Undefined property: Controller_Admin_Videocategory::$uri\" .
I am new to kohana. I am using ORM for getting data. I want to build a query in which BETWEEN clause is there. as following
We are currently using Kohana 3 for a staging application which is getting ready for production. We have few requirements to set custom routing and custom error codes. Most of the solutions offered in
Working in Kohana 2.3.4, I need to load a module when I go to example.com. In the routes.php file you can开发者_StackOverflow specify a default controller like:
$query = DB::query(Database::SELECT, \"select * from users where username like :username\") ; $query->param(\':username\', $username) ;
When writing a CRUD MVC application, would you s开发者_C百科uggest using arrays instead of long (even short) parameter lists when writing an api for your business layer (model)?
How can I using KohanaPHP framework and database module get mysql table structure? I\'ve tried this: $query = DB::query(NULL, \'DESCRIB开发者_Go百科E table_name\');