Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/08/2006, 13:57
ArielGM
 
Fecha de Ingreso: septiembre-2004
Ubicación: Internet
Mensajes: 424
Antigüedad: 19 años, 7 meses
Puntos: 0
me funciono exactamente asi:

Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">   
<html>   
<head>   
    <title>Procesa</title>  
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">  
</head>   
<body>  
<?   
if (!$HTTP_POST_VARS){   
?>  
<?   
}else{   
    
$cuerpo "Formulario de Citas\n";  
    
$cuerpo .= $HTTP_POST_VARS["nul"] . "\n";  
    
$cuerpo .= "Nombre: " $HTTP_POST_VARS["nombre"] . "\n";  
    
$cuerpo .= "Telefono: " $HTTP_POST_VARS["telefono"] . "\n";  
    
$cuerpo .= "E-Mail: " $HTTP_POST_VARS["email"] . "\n";  
    
$cuerpo .= "Comentarios: " $HTTP_POST_VARS["comentarios"] . "\n"
    
$headers"FROM: " $HTTP_POST_VARS["email"] . "\n"
     
   
mail("[email protected]","Formulario de Citas",$cuerpo,$headers);  

   
}   
?>  
</body>  
</html>   


<body>  
<meta http-equiv=refresh content=0;URL="gracias_por_sus_comentarios.html">  
</body>  
</html>