Hi,
I'm being using this class from a while and it works very well, on simple things.
That's a good working job with thiss class.
Recently i'm trying to make a 200 page PDF using MYSQL and PHP with tables, and there's an error that i can't correct, the exceded time execution.
It must be a way to solve this problem.
Can you help me?
thanks.
Hi Flanker,
i think i found a solution, it's working!
<?php
//set timeout page
set_time_limit(190);
$timeoutcounter = 0;
//inside the line cicle FOR
if ($timeoutcounter == 10)
{
ob_start();
?>
<div style="display:none;"><?php echo "."; ?></div>
<?php
$div_c = ob_get_clean();
@ob_flush($div_c); //this gives an error but with @, this didn't show.
$timeoutcounter = 0;
}
?>
This litle if keep the browser working.
Thanks.