Tengo el siguiente código de PHP:
agenda.php:
Código PHP:
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h1>Agenda de Amigos</h1>
<form action="gestion.php" method="post">
A cuantos amigos quieres poner su telefono
<select name="amigos">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<button>Aceptar</button>
</form>
</body>
</html>
gestion.php
Código PHP:
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
if(isset($_REQUEST['amigos'])){
$amigos=$_REQUEST['amigos'];
}
else{
$amigos="";
}
?>
<h1>Telefonos</h1>
<form action="telefonos.php" method="get">
<?php
for($i=0;$i<$amigos;$i++){ ?>
<table>
<tbody>
<tr>
<td>Nombre<br>
<input name="NOM_AMIGO[]" type="text"></td>
<td>Edad<br>
<input name="ED_AMIGO[]" type="number"></td>
<td>Telefono<br>
<input name="TEL_AMIGO[]" type="text" size="9"></td>
<td>Direccion<br>
<input name="DIR_AMIGO[]" type="text"></td>
</tr>
</tbody>
</table>
<?php }
?>
<button>Continuar</button>
</form>
</body>
</html>
telefonos.php
Código PHP:
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
print_r($_GET);
?>
</body>
</html>
El caso es que en telefonos.php si introduzco mas de una persona me imprime lo siguiente:
Array ( [NOM_AMIGO] => Array ( [0] => pepe [1] => maria ) [ED_AMIGO] => Array ( [0] => 20 [1] => 22 ) [TEL_AMIGO] => Array ( [0] => 695274152 [1] => 633252101 ) [DIR_AMIGO] => Array ( [0] => c/ la fuente [1] => c/ mayor ) )
como puedo hacer para que me imprima solo los datos que se introducen en los input y no me aparezca ni array ni [] y también como puedo hacer que solo me aparezca unos datos en concreto como el nombre y la dirección.