Look, I have a form with 5 input fields (within a while .. loop) that holds data from a database. So there are X repeats depending on how many rows are in the database.
So what I want to do is use a foreach statement that cycle through the form data so I can update the database (matching the original rows from the database/form)
Could someone help me??
With the form, the $_POST array holds the data like ..
(input1 => Array, input2 => Array etc..)
So how would I get the array data to just output like I have the form setup.. with all its rows etc.
Row 1 ( input1, input2, input3 etc)
Row 2 ( input etc..)
Do you understand what I mean??