How to send multiple data to next page?

I am going to make a contact page.

There will be 2 pages, and at the first page, users do input such as name, email, comment etc. and click “next”. Then the second page is just to confirm the contents, inputs at the previous page are displayed.

To realize this, I need to send multiple data from the first page to the second page. However it seems only one data can be sent.

How to do this?

When you send data to another page, you send a “thing” (which is like a database record, or a row in Excel) rather than data. This thing can have lots of data fields on it.

So you save all your inputs on a thing … and then send the thing.

1 Like

Thank you. I will try this.