Notice: Undefined index: nombre in C:\wamp\www\formularios post\recibe_formulario.php on line 10
Notice: Undefined index: apellidos in C:\wamp\www\formularios post\recibe_formulario.php on line 12
Notice: Undefined index: clave in C:\wamp\www\formularios post\recibe_formulario.php on line 14
Este es el codigo del formulario
Código:
y este es el de la pagina donde recojo los datos<html> <head> <title>Formularios post</title> </head> <body> <form methot="post" action="recibe_formulario.php"> <p>Tu nombre: <input type="text" name="nombre"></p> <p>Tus apellidos: <input type="text" name="apellidos"></p> <p>Tu password: <input type="password" name="clave"></p> <br> <input type="submit" value="Enviar"> </form> </body> </html>
Código:
Un saludo <html> <head> <title>Recibiendo los datos</title> </head> <body> <p>Estos son los datos que recibo....</p> <br> <br> <?php echo $_POST["nombre"]; echo "<br>"; echo $_POST["apellidos"]; echo "<br>"; echo $_POST["clave"]; ?> </body> </html>