el tema es q se incrementa cada vez q aparece [], entonces te está generando
$alumno[o]['nombre']
$alumno[1]['tel']
$alumno[2]['nombre']
$alumno[3]['tel']
Código HTML:
<form action="ejemplo.php" method="post" name="formu">
<input name="alumno[0][nombre]" type="text" />
<input name="alumno[0][tel]" type="text" />
<input name="alumno[1][nombre]" type="text" />
<input name="alumno[1][tel]" type="text" />
<input name="" type="submit" />
</form>