You can also set the names/id on your form to be array values:
<input name="field[0]" type="text" value="123.4"/>
<input name="field[1]" type="text" value="456.7"/>
<input name="field[2]" type="text" value="789.0"/>
--or if you don't care about which index --
<input name="field[]" type="text" value="123.4"/>
<input name="field[]" type="text" value="456.7"/>
<input name="field[]" type="text" value="789.0"/>
then when you $_GET['field'] you can use it as an array
__________________
As soon as you stop living, you start dying....
|