Ejemplo:
Código HTML:
<!-- MAL -->
<input name="foo">
<input name="foo">
<input name="foo">
<!-- BIEN -->
<input name="foo[]">
<input name="foo[]">
<input name="foo[]">
Necesitas agregar los [] para que se comporte dicho campo como array.
Para recuperarlos es simple:
Código PHP:
var_dump($_POST['foo']);
Consulta el manual:
http://www.php.net/variables.external