updating of the related fields is done by:

1. in you form name the fields like the related model
input('Article/name')
input('Topic/name')

2. when this is submitted you must save the depending model data too

$this->Article->save($this->data)
$this->Topic->save($this->data)

if you want to check what is comming in and out you can alway use:
debug($this->data)
also try debug($this) to get everything there is.


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