"Ashley M. Kirchner" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
>     How can I stick phpinfo() at the bottom of a page in such a way that
> it doesn't display the data in the page, but instead creates a log file
> and dumps everything in there)  The log file should either be appended
> to every time, or if not, a unique one created every time (one per
> transaction.)  Is this even possible?

you can use ob_ (output buffering ) familiy of functions to capture result
of phpinfo() in string, instead of outputig it to browser. Saving that
string into file is left as an excercise for reader ;)

rush
--
http://www.templatetamer.com/
http://www.folderscavenger.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to