![Stress](http://static.forosdelweb.com/fdwtheme/images/smilies/stress.png)
No se cual es el problema, les dejo el código:
Archivo.html:
Código:
enviar.php<table width="343" border="0"> <tr> <td><form name="form1" method="post" action="enviar.php"> <table width="338" border="0"> <tr> <td>Url:</td> <td><input name="nombre" type="text" id="nombre"></td> </tr> <tr> <td>Email:</td> <td><input name="email" type="text" id="email"></td> </tr> <tr> <td>Descripción:</td> <td><textarea name="msg" id="msg"></textarea></td> </tr> <tr> <td><input type="submit" name="Submit" value="Añadir"></td> <td> </td> </tr> </table> </form></td> </tr> </table>
Código:
Se los agradecería mucho si me dijeran el error, o como hacer otro.<?php $mail='[email protected]'; $nombre = $_POST['nombre']; $email = $_POST['email']; $msg = $_POST['msg']; $thank="http://www.miweb.com.ar/"; $message = " nombre:".$nombre." email:".$email." msg:".$msg.""; if (mail($mail,"consulta",$message)) Header ("Location: $thank"); ?>
Muchisimas gracias!!!!!!!!!