Yes
I know this has probably been covered to some length before BUT I cant store my webpages as a HTML document. I try using this code but it doesnt work...
<?php
$generalfield="//all my webpage content goes here, including other quotation marks!";
$filename = "dump.html";
$file = fopen( $filename, "");
fwrite($file,$generalfield);
fclose($file);
?>
Now I believe im having difficulty because the content involved have a number of quotation marks. Can anyone help?
Thanks