Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/04/2012, 04:59
Avatar de YYs86
YYs86
 
Fecha de Ingreso: abril-2012
Ubicación: Salamanca
Mensajes: 136
Antigüedad: 12 años
Puntos: 14
Respuesta: No me llega el formulario entero a mi mail..

Si por favor, posteanos la parte del formulario y la del php que recibe tu formulario

edit:

Con que nos postees el reservas.php nos vale :D

Código HTML:
Ver original
  1. <form method="post" action="reservas.php" name="contactform" id="contactform">
  2.                    
  3.                     <fieldset>
  4.                    
  5.                     <label for="name" accesskey="U"><span class="required">*</span> Nombre:</label>
  6.                     <input name="name" type="text" id="name" size="30" value="">
  7.                
  8.                     <br>
  9.                    
  10.                     <label for="name" accesskey="A"><span class="required">*</span> Apellidos:</label>
  11.                     <input name="apellidos" type="text" id="apellidos" size="30" value="">
  12.                    
  13.                     <br>
  14.                     <label for="email" accesskey="E"><span class="required">*</span> Email:</label>
  15.                     <input name="email" type="text" id="email" size="30" value="">
  16.                
  17.                     <br>
  18.                     <label for="phone" accesskey="P"><span class="required">*</span> Teléfono:</label>
  19.                     <input name="phone" type="text" id="phone" size="30" value="">
  20.                
  21.                     <br>
  22.                     <label for="subject" accesskey="S">Tema</label>
  23.                     <select name="subject" id="subject">
  24.                       <option value="Support">Petición</option>
  25.                       <option value="a Sale">Sugerencia</option>
  26.                       <option value="a Bug fix">Opinión</option>
  27.                     </select>
  28.                
  29.                     <br>
  30.                     <label for="comments" accesskey="C"><span class="required">*</span> Mensaje:</label>
  31.                     <textarea name="comments" cols="40" rows="3" id="comments" style="width: 350px;"></textarea>
  32.                                    
  33.                     <p><span class="required">*</span> ¿Eres humano?</p>
  34.                            
  35.                     <label class="verify" for="verify" accesskey="V">&nbsp;&nbsp;&nbsp;3 + 1 =</label>
  36.                     <input name="verify" type="text" id="verify" size="4" value="" style="width: 30px;"><br>
  37.                
  38.                     <input type="submit" class="submit btn-red" id="submit" value="Submit">
  39.                    
  40.                     </fieldset>
  41.                
  42.                     </form>