Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/01/2006, 18:12
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Me desdigo: pensé que no era posible. Sin embargo esto funciona:
Código PHP:
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<?php if(!$_POST){?>
<form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF'?>?uno=hola">
  <input name="dos" type="text" id="dos">
  <input type="submit" name="Submit" value="Enviar">
</form><?php }else{
echo 
$_POST['dos']."<br>";
echo 
$_GET['uno'];
}
?>
</body>
</html>