Archive for category Cakephp

Cake php console command

path/to/php/php5.2.5>php -q path/to/cake/application/cake/console/cake.php bake

2 Comments

A form without a model in cakephp

The form without a model can be created with the $form->create(‘null’, array(‘action’, ‘functionName’));

1 Comment

A Model without a database table in cakephp

To create a model without a database table in cakephp you have to create a model of the controller which will contain :

class ControllerClass extends AppModel
{
var $useTable = false;
}

Leave a Comment

Follow

Get every new post delivered to your Inbox.