Re: [PHP] **** Converting dynamic webpages into static HTML pages

2002-11-28 Thread Marek Kilimajer
Easy and intuitive are all the programs that allow you to download the whole website http://download.com.com/3150-2071-0.html?tag=dir Ron Stagg wrote: I have an interesting challenge. I have built an online product catalog that is driven entirely by the contents of the product database

[PHP] **** Converting dynamic webpages into static HTML pages

2002-11-27 Thread Ron Stagg
I have an interesting challenge. I have built an online product catalog that is driven entirely by the contents of the product database (MySQL). The entire catalog is implemented in a single PHP script (catalog.php). The dynamic nature of this implementation allows the catalog script to generate

Re: [PHP] **** Converting dynamic webpages into static HTML pages

2002-11-27 Thread Matt Vos
Matt - Original Message - From: Ron Stagg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 27, 2002 2:18 PM Subject: [PHP] Converting dynamic webpages into static HTML pages I have an interesting challenge. I have built an online product catalog that is driven entirely

Re: [PHP] **** Converting dynamic webpages into static HTML pages

2002-11-27 Thread Matt Vos
: Wednesday, November 27, 2002 2:49 PM Subject: RE: [PHP] Converting dynamic webpages into static HTML pages I like your direction. When running PHP as a static binary, how does it handle text (HTML code) that falls outsize of the ?PHP ? tags. Is the text ignored or outputted? Ron

RE: [PHP] **** Converting dynamic webpages into static HTML pages

2002-11-27 Thread Ron Stagg
To: Ron Stagg Subject: RE: [PHP] Converting dynamic webpages into static HTML pages While this does involve the creation of a second script - it's only a small change: do an Ob_start at the beginning of the script ... Then use ob_get_contents to output to a file at the end ... Two or three

Re: [PHP] **** Converting dynamic webpages into static HTML pages

2002-11-27 Thread Miles Thompson
Message - From: Ron Stagg [EMAIL PROTECTED] To: Matt Vos [EMAIL PROTECTED] Sent: Wednesday, November 27, 2002 2:49 PM Subject: RE: [PHP] Converting dynamic webpages into static HTML pages I like your direction. When running PHP as a static binary, how does it handle text (HTML code

Re: [PHP] **** Converting dynamic webpages into static HTML pages

2002-11-27 Thread Rick Widmer
When running PHP as a static binary, how does it handle text (HTML code) that falls outsize of the ?PHP ? tags. Is the text ignored or outputted? Outputted. This can be very handy. One thing I use it for is customizing configuration files where only a small percentage of the overall text