I want to create a table that users can fill with values and submit to a database. Each row of the table should be saved as an individual row in the table. Table example is shown below.
First | Last | Phone
Steve | Jones | 1234
Jason | Smith | 4567
Mark | Black | 6789
Submit
I'm creating my table as a form and submitting using POST. How can I submit each row as an individual row to my database, using only 1 submit button?