Forum Moderators: coopster
<?php
define('PAGE_SIZE', 1000);
$filename = 'file.txt';
$handle = fopen($filename, "r");
if( !$handle ) {
echo 'file error';
exit();
}
$filesize = filesize($filename);
$start = $offset = 0;
if( isset($_GET['start']) ) {
$start = (int)$_GET['start'];
$offset = $start*PAGE_SIZE;
}
$start++;
fseek($handle, $offset);
$contents = '';
if (!feof($handle)) {
$contents .= fread($handle, PAGE_SIZE);
}
fclose($handle);
echo $contents;
echo '<br /><br /><a href="http://www.example.com/index.php?start=' . $start . '">Goto Page ' . $start . '</a>';
?>