Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/10/2005, 09:51
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola shock_unown

Mete los elementos del formulario dentro de etiquetas <div> o <fieldset>
Código PHP:
<form method="post" action="<? print($_SERVER["PHP_SELF"]); ?>">
<fieldset>
    <input type="text" name="nombre" maxlength="20"/><br />
    <input type="password" name="senna" maxlength="10" /><br />
    <input type="checkbox" name="recordar" /><br />
    <input type="hidden" name="enviar" value="1" />
    <input type="submit" value="Entrar" />
</fieldset>
</form>
Saludos,