Wix Forum Automation

I don’t know if I am posting in the correct place but i’m experimenting with Wix Code and have added parts to my page where a customer can fill in inputs before clicking ‘submit’. Onclick, I have added code that extracts the users inputs (Currently Untested) and I would like to take those inputs to create a post elsewhere on the site.

Is this possible and if so, has anyone else done it… Would love to get this added in ASAP.

Its possible. You can use the inputs to to store inputs in the database. And you can use repeaters (in lists and grids) to show output on a different page.

Yes as Nextrates states, save user inputs to a dataset and simply display user inputs from that dataset on another page.

Or if you are wanting to carry on with info and move straight onto another page or lightbox with that data, then have a look at the following links:
https://www.wix.com/code/home/forum/community-discussion/sending-data-to-a-form-inside-a-lightbox
https://www.wix.com/code/home/forum/community-discussion/dynamic-page-lightboxes
https://www.wix.com/code/home/forum/community-discussion/auto-populate-lightbox-with-wix-code
https://www.wix.com/code/home/forum/community-discussion/how-to-pass-a-variable-value-from-a-page-to-a-lightbox

Code Examples are shown in both of these Wix Code API listings:
https://www.wix.com/code/reference/wix-window.html#openLightbox
https://www.wix.com/code/reference/wix-window.lightbox.html#close

Thank you both