On Mon, 6 Dec 2004 14:23:51 +0100, Salvatore <[EMAIL PROTECTED]> wrote:
> I have that script in php that should print on a page the result of lot of
> pages defined in this way:
>
> This is the address: www.mysite.com/mypage.php?idx=1&lines=50
Sounds to me like you want basic pagination. I'd use
Salvatore a écrit :
If I understand correctly, have you tried this instead of the above code :
while( !feof($f) )
{
$stream = fread($f, 8192);
$data .= $stream;
}
fclose($f);
i found it.
max_execution_time = 30
is too few for more than 3000 files:)
Ooops... Sorry for leaving PHP thr
2 matches
Mail list logo