The problem is that, every time I submit every " is preceeded by \
for example:
or
In source during edition, there is no problem:
everything is ok, but after submitting $_POST looks like:
What can I do to get off slash \ ?
for example:
<p><span class=\"Title\">Znowu</span></p>
or
<p><font size=\"5\" color=\"#ff0000\">Test</font></p>
In source during edition, there is no problem:
<p><font size="5" color="#ff0000">Test</font></p>
everything is ok, but after submitting $_POST looks like:
Array ( [content] => <p><font size=\"5\" color=\"#ff0000\">Test</font></p> )
What can I do to get off slash \ ?
Re: Problem with escaping - "
just turn off
Re: Problem with escaping - "
Re: Problem with escaping - "
Thank's alot
It helped...