I\'m attempting to create a sort of marketplace. Each item on the market has a type (i.e. the item being sold), a value, a quantity, a seller name, and an id, and all of thi
To expand on what @Michael has said in his comment, you need to turn the name='id' into an array, like this (PHP):
name='id'
echo ''
Where $i is incremented every loop.
$i
When the form is posted, you can access this array like this:
$_POST['id']['1']
Replacing ['1'] with whatever you want.
['1']