Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/09/2012, 20:06
Avatar de flashmax
flashmax
 
Fecha de Ingreso: julio-2012
Ubicación: Bs.As. Argentina
Mensajes: 507
Antigüedad: 12 años, 4 meses
Puntos: 86
Respuesta: Problema con tablas (Novato)

Hola te dejo un ejemplo
Código HTML:
<body>
<form action="procesar.php" method="get">
<table width="400" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td colspan="2" align="center"><h2>Entrar a la encuesta</h2></td>
  </tr>
  <tr>
    <td>Ingrese el codigo del alumno</td>
    <td>
    <input type="text" name="codigo" value=""></td>
      </tr>
  <tr>
  <td></td>
    <td><input type="submit" value="Submit" /></td>
    
  </tr>
</table>
</form>
</body>