How can I configure a widget form to pass data onto a larger, full size form?
For example, if someone puts information, like their name, into a widget form, clicking next would take them to the second step of a full size form, with the first step being completed (in this case the users name).
Generally this would be easy (using the $_POST global var) but the full form is going to be a multi-step form so its not just a matter of populating fields on the current step, I need to populate fields on the first step.
Any help would be appreciated.