![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
29/08/2005, 11:51
|
![Avatar de ivaanadame](http://static.forosdelweb.com/customavatars/avatar113270_2.gif) | | | Fecha de Ingreso: agosto-2005 Ubicación: México
Mensajes: 141
Antigüedad: 19 años, 5 meses Puntos: 0 | |
haz dos archivos el primero es en html recomendar.html
================================================== ========
<form method=POST action=enviar.php>
Tu nombre:<br>
<input type=text name=tunombre size=20><br>
Tu email:<br>
<input type=text name=tuemail size=20><br>
Nombre de tu amigo:<br>
<input type=text name=nombreamigo size=20><br>
Email de tu amigo:<br>
<input type=text name=emailamigo size=20><br>
<br>
<input type=submit value=Recomendar name=B1></p>
</form>
El segundo es enviar.php
================================================== ========
<?
$asunto = "Tu Amigo $tunombre te recomienda lo que quieras";
$mensaje = "Hola ".$nombreamigo.", tu amigo ".$tunombre." te recomienda
que ingreses a DONDE QUIERAS";
mail($emailamigo, $asunto, $mensaje, "From: ".$tuemail);
ECHO "gracias por recomendarnos";
?> |