Multistage form connected to a database

Hi everyone, I need some help. I have seen people make custom user input forms that save the information to a database for member logins, and I have seen an example of someone making a multistage form (using the wix slideshow) but I cant seem to find any kind of tutorial on how to combine custom user input fields for member registration and the slideshow to create this multi-step form?

I need to make a member registration form over 3 or four steps for my site but need help with this, maybe through a written or video tutorial? (Basically when someone enters the info, they click next, the slide changes, they enter info, click next, slide changes etc then they click submit and complete the form, their info is then saved, and the admin will approve their membership)

This is my first time on this forum, sorry for the essay :slight_smile:

You should be able to accomplish with a slide show and then using the “on-click” function to change the slide. For Example:

export function getstartedButton_click(event, $w) {
$w(‘#venueForm’).changeSlide(1);
}

export function venueformButton1_click(event, $w) {
$w(‘#venueForm’).changeSlide(2);
}

export function venueformButton2_click(event, $w) {
$w(‘#venueForm’).changeSlide(3);
}

Let me know if this makes sense…

Hi Eric,

I’m also trying to do the multistage form. I have nine slides and the “on-click” .changeSlide function works to change the slide, but it doesn’t save the user input text to my database. How do I save the date one each slide to my database?