Ciao a tutti, ho un problema con fckeditor che mi sta facendo perdere la testa...
Praticamente fckeditor mi fa inserire tabelle. il codice che genera sembra buono, ma poi quando lo trasferisco al database qst si modifica in questo modo:
Da
<table cellspacing="1" cellpadding="1" width="200" border="1">
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</p>
DIVENTA
<table cellspacing="0" cellpadding="0" width="200" border="1">
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</p>
Aggiunge quindi
, facendomi visualizzare la tabella spostata più giù, quanto sono i
che genera. Cme risolvere questo problema?