Comunidad de diseño web y desarrollo en internet online

emparejar los cuadros de texto de mi formulario

Citar            
MensajeEscrito el 14 Oct 2011 08:41 pm
Hola que tal,

Necesito saber como se le hace para emparejar los cuadros de textos de mi formulario en php...

me refiero a que queden todos parejos hacia abajo( no uno mas a la derecha que el otro).

Aquí dejo el código del formulario:

Código :

<?php
if (!isset($_POST['email'])) {
?>
  <form action="<?=$_SERVER['PHP_SELF']?>" method="post">
    <label>
      Nombre:
      <input name="nombre" type="text" />
    </label>
    <label>
      Teléfono:
      <input name="telefono" type="text" />
    </label>
    <label>
      Email:
      <input name="email" type="text" />
    </label>
    <label>
      Mensaje:
      <textarea name="mensaje" rows="6" cols="50"></textarea>
    </label>
    <input type="reset" value="Borrar" />
    <input type="submit" value="Enviar" />
  </form>
<?php
}else{
  $mensaje="Mensaje del formulario de contacto de nnatali.com";
  $mensaje.= "\nNombre: ". $_POST['nombre'];
  $mensaje.= "\nEmail: ".$_POST['email'];
  $mensaje.= "\nTelefono: ". $_POST['telefono'];
  $mensaje.= "\nMensaje: \n".$_POST['mensaje'];
  $destino= "[email protected]";
  $remitente = $_POST['email'];
  $asunto = "Mensaje enviado por: ".$_POST['nombre'];
  mail($destino,$asunto,$mensaje,"FROM: $remitente");
?>


espero su respuesta lo mas pronto posible

Por armijo

8 de clabLevel



 

chrome
Citar            
MensajeEscrito el 15 Oct 2011 02:17 am
Podrias utilizar tablas para emparejar mejor algo asi:

Código PHP :

<table>
<tr>
<td>Nombre:</td><td><input name="nombre" type="text" /></td>
</tr>
</table>


asi se separarán por columnas.

Por zarkiel

Claber

340 de clabLevel

4 tutoriales

Genero:Masculino  

firefox
Citar            
MensajeEscrito el 15 Oct 2011 04:00 am

zarkiel escribió:

Podrias utilizar tablas para emparejar mejor algo asi:

Código PHP :

<table>
<tr>
<td>Nombre:</td><td><input name="nombre" type="text" /></td>
</tr>
</table>


asi se separarán por columnas.


Muchas gracias por tu respuesta, efectivamente era la solución buscada ;)

Por armijo

8 de clabLevel



 

chrome

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.