23/05/2012, 21:01
|
| | | Fecha de Ingreso: abril-2012
Mensajes: 1
Antigüedad: 12 años, 7 meses Puntos: 0 | |
La variable post no me funciona Tengo un problema con la funcion $_POST: Tengo este codigo :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form action="recibido.php.php" method="get">
<input type="text" name="txtNombre" />
<input type="text" name="txtApellido" />
<input type="submit" value="enviar" />
</form>
</body>
</html> Y el php que lo recibe:
nombre: <?php echo $_GET['txtNombre'];?><br />
apellido: <?php echo $_GET['txtApellido'];?>
Este es el mensaje de error que me sale en el navegador: Notice: Undefined index: txtNombre in C:\xampp\htdocs\recibido.php.php on line 9
Si alguien me puede ayudar les voy a agradecer...saludos |