Grant Cox wrote:

> Using $reservation['Reservation']['number'];  is correct.  This is
> because each retrieved row may have associated models - ie
> $reservation['Room'] etc.

Ah, another chink of sunlight just broke through the clouds :-)

I was going to ask this same question myself. My workaround (for models
with no associated models was to do the following:

$tmp=$reservations['Reservation'];

foreach($tmp as $reservation) {

  echo $reservation['number'];

}


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