I´m using tinyMCE and when I send my text with an url this is what I get:
How can I do to normalize it?Code:<p><a href=\"aaa\" target=\"_blank\">asdas</a></p>
I´d like to get:
<p><a href='aaa' target='_blank'>asdas</a></p>
I´ve tried
Didn´t work.Code:$txt = str_replace("/\/","", $_POST['text']); $txt = str_replace('"',"'", $txt);




Reply With Quote