hi all.
in my system the user gets a textarea to write something in.
i save that, along other stuff, in a xnl file.
if the user writes down the quote char and/or the apostrophe char, it is saved as \" & \'.
when i display this info it says like this.
i display it with this:
$msgText = iconv("UTF-8", "windows-1255", $node->get_content());
....
echo $msgText;
even if i replace all this marks for something else, i.e: [q] & [a], and when displaying replace it back like this:
echo str_replace("[q]","\"",$msgText);
i get the same thing.
what can i do?
thanks.