I have a problem when it comes to writing quotation marks to a file using fwrite(). Instead of writing just " fwrite() writes \"... I don't want those backslashes in the output!
example:
instead of...
<table cellpadding="0">
the output became...
<table cellpadding=\"0\">
as you can see, the result would not work at all... what do I write to get by this?