> basically, how can I access a table in another controller?

Simply answer the relevant question when you bake. It's something
like, do you want to use any models other than the default.

What this does for the controller is something like:

class UsersController extends AppController {
  $var uses= array('User','School');
}

You can then access the School model in your Users controller.

Do a search for $uses on the controllers page of the manual for a
better explanation.

Simon


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to