Listen to vincent, but if you still need to know...
Try:
<input type="hidden" name="myarray[0]" value="%value here%">
<input type="hidden" name="myarray[1]" value="%value here%">
<input type="hidden" name="myarray[2]" value="%value here%">
<input type="hidden" name="myarray[3]" value="%value here%">
.
.
.
<input type="hidden" name="myarray[N]" value="%value here%">
your php script will then have a variable set as $myarray which is an array of N+1 elements.
Other cool things can be done too, you can split into a multidimensional array by doing
<input type="hidden" name="myarray[dim0][item0]" value="%value here%">
<input type="hidden" name="myarray[dim1][item1]" value="%value here%">
<input type="hidden" name="myarray[dim2][item2]" value="%value here%">
etc.. you get the idea. On the script you can access the values via
$myarray["dim2"]["item2"], note the use of quotes in the php script, but not in the html code for <input>
Saludos
Gerardo