(SOLVED) Multiple form submissions update data instead of creating new row of data in database

Hi, I on the frontend i have table with content from a database, that the user can add content to using a form.

When the user submit the the form once, it creates a new row in database with the data. Which is perfect.
But when submitting the form the second time. It updates the data the user has typed first time, instead of creating a new row of data in the database…

SO THE QUESTION IS:

Is it possible to create a new row of data in the database everytime the user submits the form, instead of updating the exsiting data.

How are you saving to the database? Are you using code or a dataset (databinding)?

You can use insert() if you are using queries on the database collection, or new() if you are using a dataset.

I have connected the form using a dataset.

Awesome, “new()” worked perfectly! Thank you for your fast answer! :slight_smile: