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 have a compund 3-level form. It contains 6 subforms, and each of those contains fields(not the same fields, naturally).

The task is to store the form data in a serialized format, and then to load it to the form. Storing works fine, by using

$data = serialize($form->getData());

The problem is with loading this. I'm using this:

$form->setData(unserialize($data));

The values of $data equal in both cases.

I don't use distinguished database fields for each form field on purpose, I don't need to be able to search among them, I just need to store and load the form and use the form data as an array. All together the form contains ~80 fields, some of them are custom fields.

None of the fields get filled in when loading the data. Any idea, what I'm doing wrong?

share|improve this question
Try checking what the unserialized data looks like before setting. i.e. print_r(unserialize($data)); – Rob Apodaca Dec 2 '12 at 15:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.