Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using two models 'User' and 'UserImage'.. Where in i am going to save multiple rows into user_images table.. The view for UserImage is below..

echo $this->Form->input('UserImage.0.photo');
    echo $this->Form->input('UserImage.1.photo');
echo $this->Form->input('user_id');
echo $this->Form->end(__('Submit'));

Then how to save multiple rows..

share|improve this question
1  
You'll probably need to post your models before anyone can help. Also, what have you tried? – Thunder Rabbit May 1 '12 at 11:27

2 Answers

up vote 2 down vote accepted

You should specify the model of each field if you have more models involved. Also, you need to specify for each record the related field (user_id).

Try this:

echo $this->Form->input('UserImage.0.user_id');
echo $this->Form->input('UserImage.1.user_id');

Plus use this to save multiple records and multiple models:

$this->UserImage->saveAll($this->request->data);
share|improve this answer

See document of cakephp there is a method say saveAll() http://book.cakephp.org/1.3/view/1031/Saving-Your-Data

share|improve this answer
No its not saving sir.. – Sanganabasu May 1 '12 at 11:11
post your code here – Dilip Godhani May 1 '12 at 11:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.