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
A form without a model in cakephp
The form without a model can be created with the $form->create(‘null’, array(‘action’, ‘functionName’));
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;
}