1.-
El código, por favor, insértalo entre las etiquetas [ code] y [ /code] (o [ php] y [ /php]).
2.-
Debes indicarle al form el method POST. (para que no salgan los parametros en la URL)
3.-
Cierra la etiqueta form!
4.-
Pon el correspondiente "name" a los input !
-> Con el name, consigues que luego, en php, puedas hacer $mi_variable = $_POST['name_que_le_he_puesto'];
5.- la parte html quedaría así:
Código HTML:
Ver original <td width="364" height="131"> <form enctype="multipart/form-data" method="POST" id="form" action="enviar.php"> <td width="4" height="131"></td> <td width="184" height="131"> <td width="184" height="30"> <input type="text" value="Tu nombre:" name="nombre"><br> <td width="184" height="30"> <input type="text" value="Teléfono:" name="telefono"><br> <td width="184" height="71"> <input type="text" value="E-mail:" name="mail"><br> <td width="176" height="131"> <textarea name="textarea" cols="35" rows="35" name="mensaje">Escribe tu mensaje:
</textarea><br> <br style="line-height:5px "> <img alt="" src="images/spacer.gif" width="38" height="1"><a href="#" class="more" onClick="document.getElementById('form').reset()"> borrar
</a> <a href="#" class="more" onClick="document.getElementById('form').submit()" > enviar
</a>