Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/11/2006, 06:50
Avatar de Stephano
Stephano
 
Fecha de Ingreso: junio-2005
Ubicación: Arequipa
Mensajes: 392
Antigüedad: 18 años, 10 meses
Puntos: 3
Si tu hosting soporta php aqui te dejo un pequeño script; los mensajes de contacto llegan a tu email:
Código HTML:
<table width="343" border="0">
  <tr>
    <td>Nombre</td>
    <td><form name="form1" method="post" action="enviar.php">
      <input type="text" name="nombre">
    </form></td>
  </tr>
  <tr>
    <td>Email</td>
    <td><input type="text" name="email"></td>
  </tr>
  <tr>
    <td height="78">Mensaje</td>
    <td><textarea name="msg"></textarea></td>
  </tr>
  <tr>
    <td><input type="submit" name="Submit" value="Enviar"></td>
    <td>&nbsp;</td>
  </tr>
</table> 
enviar.php

Código PHP:
<?php

$mail
='[email protected]';

 
$nombre $_POST['nombre'];
$email $_POST['email'];
$msg $_POST['msg'];

$thank="index.html";

$message "
nombre:"
.$nombre."
email:"
.$email."
msg:"
.$msg."";
  
  if (
mail($mail,"consulta",$message)) 
       
Header ("Location: $thank");
  
 
?>
Saludos
__________________
www.percyweb.com - mi Blog