I’m looking to create a table in html to be used to insert the track listing for a CD album. This is not pull info out of the database but rather to insert new data.
I don’t want to put one by one with a single form but rather do all for that album at once
Something like this

How can this be done with HTML and php to be inserted into a mysql db
I understand this can be done if I put the info into an excel file and upload it to the serever but I want it to be done right on the server
Ok after banging my head around I have discovered what I was after was a CRUD Datagrid.
I have gone with the jqery east ui grid as it the exact thing for my use
http://www.jeasyui.com/tutorial/app/crud2.php
This grid is pretty simple to use and all the demo files are available from jquery wich makes it even better.
A Thanks to PEM for pointing me in the right direction