RE: [PHP] storing html in a db

2002-06-10 Thread Jared Boelens
You might consider using output buffering in order to accomplish that goal. http://www.php.net/manual/en/ref.outcontrol.php You could buffer the entire page and store the buffer into the DB at the end of the page load. -Jared -Original Message- From: W. Enserink [mailto:[EMAIL

Re: [PHP] storing html in a db

2002-06-10 Thread 1LT John W. Holmes
Look at the output buffering section in the manual. Read the user comments. http://www.php.net/manual/en/ref.outcontrol.php ---John Holmes... - Original Message - From: W. Enserink [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 10, 2002 3:34 PM Subject: [PHP] storing html

Re: [PHP] storing html in a db

2002-06-10 Thread W. Enserink
thx great tip:-) - Original Message - From: Jared Boelens [EMAIL PROTECTED] To: W. Enserink [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, June 10, 2002 9:41 PM Subject: RE: [PHP] storing html in a db You might consider using output buffering in order to accomplish that goal