el problema es que estas tomando muy mal los indices....
recuerda que es un array, no una string!!
HTML Código HTML:
<input name="foo[1]"/>
<input name="foo[2]"/>
...
<input name="foo[99]"/>
y en PHP se así
Código PHP:
// MAL
echo $_POST['foo[99]'];
// BIEN !!!
echo $_POST['foo'][99]; // o $_GET
por favor, consulta el
manual de PHP http://www.php.net/manual/es/index.php