AW: AW: [PHP] Cache Database-driven site

2001-03-13 Thread Joe Maier
Aaron, this is obviously exactly what i need!! Thanks a lot - this saved me days of work! Joe -Ursprungliche Nachricht- Von: Aaron Tuller [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 13. Marz 2001 05:41 An: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Betreff: Re: AW: [PHP] Cache Database

Re: AW: [PHP] Cache Database-driven site

2001-03-12 Thread Aaron Tuller
all you need to do is wrap your pages in: ob_start(); // your code $page = ob_get_contents(); // write $page to a file or whatever you want to do and then depending on if this script is being called by cron or just when people load the page you can either do an ob_end_flush() or ob_end_clea

Re: AW: [PHP] Cache Database-driven site

2001-03-12 Thread Andrew Hill
http://www.php.net/manual/en/ref.outcontrol.php Regards, Andrew On 3/12/01 6:40 PM, "Joe Maier" <[EMAIL PROTECTED]> wrote: > Aaron, > i would love to believe what you say. > But i couldn't find any buffering functions in the online docs. > > Could you please gimme a pointer on where i can fin

AW: [PHP] Cache Database-driven site

2001-03-12 Thread Joe Maier
Aaron, i would love to believe what you say. But i couldn't find any buffering functions in the online docs. Could you please gimme a pointer on where i can find these functions and what's their name. Are they available in php3? Thanks a lot, Joe -Ursprungliche Nachricht- Von: Aaron Tul