I generated an array of textfield on my table for a quick update of the data on the list. Let's say I have
And the addresses are textfields, let's just call it <input type='text' name='address[]' size='12'>. Now I can get the array with thisCode:Id Name Address 1 Jim 2 Boy 3 Gregg
But how do you guys normally get the field that has value and update it to reflect what address is for whom?Code:while (list($k, $v) = @each($_POST['address])) {
And... am I doing good so far? Or is there a better way of doing this? Thanks.




Reply With Quote