Hi, I have a form like this: <form action="products.php" method="post"> <input name="position[pos][value 1]" type="text" id="position[pos][value 1]" value="number 1"> <input name="position[pos][value 2]" type="text" id="position[pos][value 2]" value="number 2"> <input name="position[pos][value 3]" type="text" id="position[pos][value 3]" value="number 3"> </form> For each element of the array i want to update the value in the database. For example, for position[pos][value 1] i want to update the value (number 1) in the database. Thanks in advance for your help!!!