you can do it like this...
on the php side this would equate to...
echo $_POST['field'][0]; // prints "zero"
echo $_POST['field'][1]; // prints "one"
echo $_POST['field'][65]; // prints "sixty-five"
echo $_POST['field']['car']; // prints "truck"
provided the form is submitted via a POST met
Hi all,
another newbie question
I have a recordset from mysql - a list of 20 or so products...
1 - I would like create an edit form to loop through the records and edit a
text field called 'favorite' for each of the records - (this, I have done)...
2 - then I would like to submit the for
2 matches
Mail list logo