table and form

Hi,

here is the problem i 'm facing:
when i use TIDY on an HTML page which contains a tag  <table> and inside
this tag
i have a form <form>, TIDY creates another tag <table> just after the tag
<form>

to be more explicit:
the code before TIDY:
<table>
 <tr>
 <td>...</td>
 <form   ...>
 <td>...</td>
 </form>
 <td>...</td>
 </tr>
 </table>

the code after TIDY:
<table>
 <tr>
 <td>...</td>
 <form   ...>

<table>
<tr>
<td>...</td>
</tr>
</table>

 </form>
 <td>...</td>
 </tr>
 </table>

has someone already faced this issue?

thanks fro your help

regards

Received on Wednesday, 27 September 2000 05:04:54 UTC