Farjad Habib wrote:
> 
> http://book.cakephp.org/view/78/Associations-Linking-Models-Together
> 
> go through this and u ll get an idea
AFAICT there's nothing in there to show how loop through all the records in
one table and update another table as appropriate :)

I tried modifying the

foreach ($issues as issue) loop in my index view of Issues and I can extract
all associated Change.detail fields using a inner loop of

$totaldetail = '';
foreach($issue['Change'] as $subchange) {
   if (!empty($subchange['detail'])) {
      $totaldetail = $totaldetail . $subchange['detail'];
   }
};

but I don't seem able to make Issue.alldetails = $totaldetail and save each
updated record :(

regards

Simon


-- 
View this message in context: 
http://www.nabble.com/How-do-I-merge-2-tables-tp25103063p25103642.html
Sent from the CakePHP mailing list archive at Nabble.com.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to