I have a small problem I'm thinking..
I have a form that lists items and next to each item there is a input text field for the user to choose the quantity of each item they wish to order..
When the form is run through it spits out this array:
( [8] => 3 [9] => 4 [10] => 5 [11] => 6 [12] => 7 )
I am trying to get 8,9,10,11,12 to be $item_id and 3,4,5,6,7 to be $item_qty..
Then I would like to insert that data, each being in their own row, into a database while the $item_id's match the $item_qty's..