I have a field in a page which contains HTML but when i submit it to the script which writes the file out it puts all the escaping characters in the end file for some reason, I cannot work out why... Or how to stop it...? can any one help plz
i.e.
ORIGINAL...
<HTML>
<HEAD>
<TITLE></TITLE>
<BODY onload="xxx">
</BODY>
</HTML>
OUTPUT...
<HTML>
<HEAD>
<TITLE></TITLE>
<BODY onload=\"xxx\">
</BODY>
</HTML>