>I was thinking about
>saving form data from step 1 to step 2 in the session, but I may have
>problems with form serialisation.

Theres no prolbem with that(in fact there are 2 popular ways of doing
this: a)using session or b)using cookies)..because what you are going
to sve in session is an array that contents the diferenets values of
form's widgets. For example, if you create a contact form with a name,
lastname and comment inputs, then you will have an array like
contact['name'], contact[last_name] and contact[comments], so you will
just store this array called "contact" in session, and this will not
give any serialization problem or so, because is not an object it just
a data type like integer, string etc.

Cheers

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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

To unsubscribe, reply using "remove me" as the subject.

Reply via email to