Hello,
You can use link the form to a database collection: In the Wix Editor, connect your checkout form to a collection in the Content Manager. This will automatically store the submitted data (e.g., name, email, ticket type) in the collection.
Use Wix Code (Velo): Once the data is stored, you can retrieve it using Velo by Wix. Here’s a simple example of how to query the collection:
import wixData from ‘wix-data’;
wixData.query(‘EventTickets’) // Use your collection name here
.find()
.then(results => {
console.log(results.items); // Do something with the form data
});
hope that helps!