A Model without a database table in cakephp
Posted by jhalak on January 9, 2008
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;
}