Here is my code:
<?php
$Start = "<html>";
$End = "</html>";
$URL = file('http://www.adomain.com');
$get = eregi("$Start(.*)$End", implode($URL), $Print);
for ($i=0; $i < count($Print); $i++) {
echo $Print[$i];
}
?>
It prints the fetched material twice... any reasons?