On 18.05.2007 18:22 Enchy wrote:

> echo $telephone[0][suppliers][tel];
> 
> When I do this it moans that I have to define suppliers and tel

Because for one, you should be using strings, not barewords:

echo $telephone[0]['suppliers']['tel'];

And why do you bother with the whole framework thing if you're not going
to use it?

$this->Order->Suppliers->findById($id); // or something

-Matt

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