How can I create a multiple page form on wix?

I have tried everything, currently I am trying to use the database to create multiple pages of questions and submission but obviously that creates multiple form submissions, which I dont want.

Is there any way to connect the multiple pages so that the backend reads the submissions as one whole form?

Hi Sydni,

You can achieve that by using code.
There are a few methods to get this done.
For example you could use wix-storage to save the input data for each page into the user’s browser storage, then get the information once the form is complete and save it directly to the collection using wixData.save
To learn how to store data see here.

Another method is by passing the answers in the url field as query parameters.
Note that older browsers such as Internet Explorer have a 2,083 characters limit for URLs, so this method might not be suitable for you if the data is too large.
See more below about query parameters.

Ido