I'm also a newbie trying to do the same thing.
I couldn't get it to work until I realised that the model name in $uses
needs to be Uppercase e.g.
class HomesController extends AppController
{
var $name = 'Homes';
var $uses = array('Exhibition');
function index()
{
$this->set('title', 'My New Home Page');
$this->set('exhibitions', $this->Exhibition->findAll());
}
}
Hope this save someone a few minutes...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---