Ver Mensaje Individual
  #12 (permalink)  
Antiguo 14/07/2007, 12:17
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Ayuda Nececito Ayuda

Tal como te lo puso carmagedon:
Código PHP:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="text" name="name1">
<input type="text" name="name2">
<input type="submit" name="enviar" value="Enviar">
</form>
<?php
if( !empty( $_POST['enviar'] ) ) {
echo 
"Primer Input: " $_POST['name1'];
echo 
"<br>";
echo 
"Segundo Input: " $_POST['name2'];
}
?>
Saludos.