This simple code will load any site you want. I have a script that can replace URLs, etc. ICQ me if you need it.
PHP Code:
<?php
// Get a file into an array. In this example we'll go through HTTP to get
// the HTML source of a URL.
$lines = file ('http://www.WEBSITEHERE.com/');
// Loop through our array, show html source as html source; and line numbers too.
foreach ($lines as $line_num => $line) {
echo $line;
}
?>