Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/03/2011, 08:25
ajosecorrea
 
Fecha de Ingreso: marzo-2011
Mensajes: 7
Antigüedad: 13 años, 1 mes
Puntos: 0
Formulario me llega vacio. Ayuda

Hola, estoy alojado en 1&1 y el formulario me llega vació, seguí las indicaciones de mi hosting, pero nada.

html 5................................................. ..........................................

<!-- Formulario de contacto -->

<section id="formulario">
<div class="contenedor">
<form action="php/mail.php" enctype="text/plain" method="post">
<p class="titulo"><h1>Tu nombre</h1></p>
<input type="text" class="cajachica" name="nombre" placeholder="Pon tu nombre">
<p class="titulo"><h1>Escribe tu email</h1></p>
<input type="email" class="cajachica" name="email" placeholder="Pon tu email">
<p class="titulo"><h1>Tu mensaje</h1></p>
<textarea class="cajagrande" name="comentario" placeholder="Escibenos tu mensaje">
</textarea>
<button type="submit" name="enviar" class="enviar"></button>
</form>
</div>
</section>




php............................................... ..................

<?
$from = $_POST['email'];
$subject = 'Consulta';
$message = 'Nombre: ' . $_POST['nombre'] . "\n". 'Email: ' . $_POST['email'] . "\n". 'Mensaje: ' . $_POST['comentario'];
$headers = "From: ". $from . "\n";
// enviamos el mensaje
mail ('[email protected]', $subject, $message, $headers);
header('Location: http://www.webcheck.es/index.html');
?>

Correo............................................ ............................

Nombre:
Email:
Mensaje: