<pre>
<?php
$url = "http://www.google.com/";;
$list = file($url);
foreach ($list as $val) {
echo htmlspecialchars($val);
}
?>
</pre>