Try this:
Code:
<?php
$file = file('http://www.webmaster-resources101.com');
$start = "0"; // Start showing code from this line
$end = "10"; // End showing code from this line
for($x=$start;$x<$end;$x++) {
echo $file[$x];
}
?>
Choose what line you, want to start on and where you want to end. Simple as that
