First, if this is really just for maintenance, you may want to get yourself a decent frontend, such as phpmyadmin or mysqlfront for MySQL. There are frontends for nearly every database type.
Second, you can simply use arrays:
<input type=text name="title[]" value="ddd">
Add one hidden field per row, to store the record_id of the record:
<input type=hidden name="recordid[]" value="2">
If you do that for every row, you will end up with several arrays. You can find the record id in the 'recordid' array, and rest of the data is scattered accross the other arrays, but at the same index:
third record from the form:
recordid = $recordid[2];
title = $title[2];
path = $path[2];
etc.