Thanks for the help!
Here's where i'm at so far....
To test, i've called from the db 3 records, and am trying to update just the amount field. I've added the array (hopefully right), and it is getting post data np (from debug).
Array ( [floor_array] => Array ( [0] => Floor1 [1] => Floor2 [2] => Floor4 ) [date_array] => Array ( [0] => 2005-10-07 [1] => 2005-10-07 [2] => 2005-10-07 ) [prodnum_array] => Array ( [0] => 1042 [1] => 581 [2] => 343 ) [amountordered_array] => Array ( [0] => 12 [1] => 14 [2] => 16 ) [x] => 51 [y] => 5 )
(the date array is redundant, as i don't need it to UPDATE SET.. i'll remove it later.)
Now, getting the data to UPDATE the orders set is fun.
Using the collected array and putting it straight through (for fun), i get a query result of:
UPDATE orders SET amount='Array' WHERE prodnum='Array'
I'm currently trying to figure out a way to add it all accordingly without serialize. Still researching. Feel free to beat me to the punchline.
Thanks!