Contenidos
Formulario (index.php)
1 2 3 4 5 |
<form action="exampleget.php" method="get"> Nombre: <input type="text" name="nombre" /><br /> Edad: <input type="text" name="edad" /><br /> <input type="submit" name="submit" value="Enviar" /> </form> |
Código en PHP con método GET (es una prueba de concepto, el código es inseguro) (exampleget.php)
1 |
<?php echo $_GET['nombre']; ?> tiene <?php echo (int)$_GET['edad']; ?> años. |