Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/08/2007, 20:45
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: problemas php y apache en winvista con ie 7

Prueba asi y ve si te funciona:
Código PHP:
<form id="form1" name="form1" method="post" action="">
nombre
<label>
<input name="texto" type="text" id="texto" />
</label>
<p>
<label>
<input name="enviar" type="submit" id="enviar" value="Enviar" />
<?php
if ($_POST['enviar']){
echo 
$_POST['texto'];
}
?> </label>
</p>
</form>
Saludos.