echo "La matriz es: <br/>"; for($i=0;$i<count($matriz);$i++) { for($j=0;$j<count($matriz[0]);$j++) { echo $matriz[$i][$j]."-"; } echo "<br/>"; }