
06/07/2004, 14:45
|
| | Fecha de Ingreso: marzo-2003
Mensajes: 74
Antigüedad: 22 años Puntos: 0 | |
Edita el código fuente y mueve las tag <form name="form"> y </form>
fuera de <td> y </td> o <tr> y </tr>, depende de como tengas conformada tu tabla y donde se encuentre ubicado el formulario dentro de esta. Por ejemplo:
Si tienes esto:
<table width="300" height="10">
<tr> <td> <form name="form1" method="post" action="">
<input type="text" name="textfield"> </form> </td>
</tr>
</table>
Podrías dejarlo así:
<table width="300" height="10">
<tr> <form name="form1" method="post" action=""> <td>
<input type="text" name="textfield"> </td> </form>
</tr>
</table>
Manthis |