Alhtough I have not needed=applied this, I believe your answer lies in curl
functions. Please anyone, correct me, if I am wrong.
http://www.php.net/manual/en/ref.curl.php
<?php
$ch = curl_init("http://www.example.com/");
$fp = fopen("example_homepage.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
?>