For reading from a specified point in the file,
use:
<?php
$fp=fopen("$filename","r");
fseek($fp,$numpoint);
$content=fread($fp,filesize("$filename"));
fclose($fp);
?>
For
doing the same with an url-based file, use jeichorn@mail.com's solution and
substr it.