Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/06/2011, 02:57
Avatar de Eleazan
Eleazan
 
Fecha de Ingreso: abril-2008
Ubicación: Ibiza
Mensajes: 1.879
Antigüedad: 16 años, 8 meses
Puntos: 326
Respuesta: Formulario contacto php

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
  1. <tr>
  2.     <td width="364" height="131">
  3.         <form enctype="multipart/form-data" method="POST" id="form" action="enviar.php">
  4.             <table>
  5.                 <tr>
  6.                     <td width="4" height="131"></td>
  7.                     <td width="184" height="131">
  8.                         <table>
  9.                             <tr>
  10.                                 <td width="184" height="30">
  11.                                     <input type="text" value="Tu nombre:" name="nombre"><br>
  12.                                 </td>
  13.                             </tr>
  14.                             <tr>
  15.                                 <td width="184" height="30">
  16.                                     <input type="text" value="Teléfono:" name="telefono"><br>
  17.                                 </td>
  18.                             </tr>
  19.                             <tr>
  20.                                 <td width="184" height="71">
  21.                                     <input type="text" value="E-mail:" name="mail"><br>
  22.                                 </td>
  23.                             </tr>
  24.                         </table>
  25.                     </td>
  26.                     <td width="176" height="131">
  27.                         <textarea name="textarea" cols="35" rows="35" name="mensaje">Escribe tu mensaje:</textarea><br>
  28.                         <br style="line-height:5px ">
  29.                         <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>
  30.                     </td>
  31.                 </tr>
  32.             </table>
  33.         </form>
  34.     </td>
  35. </tr>