I have made a script which simply shows a site, by using the code below:
$html = implode ('', file ($site));
print $html;
This however only fetches the html, the images still have to be retrieved by the users browser. I want it so that everything (images, css, etc.) is retrieved, and then displayed by the script. Is there anyway I can do this?
Thanks for your help.