I believe he means SEO search engine optimization...he wants all his pages to exist permanently for search engine rankings
----- Original Message ----- From: James Keeline To: [email protected] Sent: Sunday, February 03, 2008 3:36 PM Subject: Re: [php-list] How do I keep php/mysql generated pages on the server? --- Steve Delaney <[EMAIL PROTECTED]> wrote: > I need to keep generated pages active for SOE purposes. > How do I generate copies for the server? I don't know what SOE is and I haven't taken time to look it up. You might look at using the ob_* functions to capture all of the output and at the bottom of the page you could save the output in a file or database table as is most appropriate for your purpose. Take a look at the php.ini directives for auto_prepend and auto_append since these can run a PHP script (ie include) you designate which contains the ob_start(), ob_get_contents() and ob_flush() functions. For the ob_start() this must be called before any output goes to the browser. Hence your script will have the opening PHP tag on the first character of the first line. The ob_start() will appear before your first print or echo statement as well as any raw HTML outside the PHP tags. James Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links [Non-text portions of this message have been removed]
