Any space that comes after a <td> gets converted into a ?. and get converted to a ?.
Does any body know why ? and how to stop it form happening.
It happens in IE and Firefox.
Thanks
Does any body know why ? and how to stop it form happening.
It happens in IE and Firefox.
Thanks
RE: <td> <td> changes to <td>?<td>
Online 54 fckeditor.php it runs the htmlspecialchars function. This is what causes the problem. It converts some of the html into non Unicode characters. Specifically ASCII character 160.
So to fix this on the next line I put this.
$HtmlValue = str_replace(chr(160), '&nbsp;', $HtmlValue);
It converts character 160 to a escaped html space ' '.