FAQ #49

Question: How do I make a model without a table? Answer: Set the $useTable property to false.
//in your model
class Mobile extends AppModel{

var $useTable=false;

...
Add comment