Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/07/2004, 14:45
Manthis
 
Fecha de Ingreso: marzo-2003
Mensajes: 74
Antigüedad: 21 años, 1 mes
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