I am making a quick site that allows users to register for an event. It consists of two pages, each with a form.
The first form/page gets their information, along with the number of people they will bring (1-20). This form passes it’s data to the next page.
The second page is a for loop that prints out x number of forms, based on the users selection from a dropdown menu.
How do I do this?
Thanks,
Sean
Assuming you have the first part done, the second page would have something similar to this:
You’re basically reading the number of guests submitted on the first form and displaying that many tags.