I\'ve got this piece of code, which should fetch the source code of the website.
$homepage = file_get_contents(\'http://homepage.com\'); echo $homepage;
Try this, using htmlspecialchars:
$homepage = file_get_contents('http://homepage.com'); echo htmlspecialchars($homepage);