Pues ve el link que te deje, es sencillo:
Código html:
Ver original<input type="text" name="matriz[0]" value="" /> <input type="text" name="matriz[1]" value="" /> <input type="text" name="matriz[2]" value="" /> <input type="text" name="matriz[3]" value="" />
y en PHP:
Código php:
Ver original<?php
foreach($_POST['matriz'] as $indice => $valor) {
echo "$indice => $valor";
}
Saludos.