CakePHP: controller without model
Having a controller without a model in CakePHP is very simple: just declare the variable $uses=null in the controller.
class MycoolsController extends AppController{
var $name="Mycools";
var $uses = null;
...
}

Well, I tried this one. But what if, i want to use external models and i _have_ to use $uses? Such as $uses = array(‘Html’, ‘Javascript’); ?
atan, you want to use a Controller, with one or more external Model, you won’t care about “no models”
Simply use the $uses.