Entonces si lo tienes que grabar como un arreglo, es decir si tu input se llama:
Código PHP:
<input type="text" name="hores2" size=2 value="<?php echo $array[$i]; ?>">
Lo tienes que llamar asi:
Código PHP:
<input type="text" name="hores2[]" size=2 value="<?php echo $array[$i]; ?>">
Y en PHP ya solo lo rescatas sin hacer el array, directamente se transforma a un arreglo.
Saludos.