Hi,
Simple Question ...
After I have used curl to get a file, I end up with
a variable $page_html which I can echo to display the page.
$page_html = cURL("http://www.example.com,null,$cookie,null);
echo "$page_html";
How would I now write this info to a file that I can later
display on screen ?
I guess it needs to be a binary file.
And is this a "snapshot" ?
I mean if the page I am viewing is showing images to other websites,
and those images later change, will my saved file display how it was with the images or with missing images ?
Do I need to save it as a pdf file ?
Thanks.
.