Para eso te sugiero usar array asociativos. Ejemplo
Código PHP:
Ver original<?php
foreach($_GET["name"] as $v){
echo $v."<br />";
}
?>
<form action="index.php">
<input type="text" name="name['<?php echo $fondo; ?>']" value="1" />
<input type="text" name="name['<?php echo $fondo; ?>']" value="1" />
<input type="text" name="name['<?php echo $fondo; ?>']" value="1" />
<input type="text" name="name['<?php echo $fondo; ?>']" value="1" />
<input type="text" name="name['<?php echo $fondo; ?>']" value="1" />
<input type="submit" />
</form>