[PHP] Can output_buffering be set in a script?

2006-03-30 Thread Todd Cary
I do not have access to the php.ini file and I need to have output_buffering turned on. Can this be done within a script? Thank you -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Can output_buffering be set in a script?

2006-03-30 Thread Jim Moseby
I do not have access to the php.ini file and I need to have output_buffering turned on. Can this be done within a script? If your web host allows it, you may be able to set it with ini_set(). See www.php.net/ini_set and also

RE: [PHP] Can output_buffering be set in a script?

2006-03-30 Thread Jay Blanchard
[snip] I do not have access to the php.ini file and I need to have output_buffering turned on. Can this be done within a script? [/snip] http://www.php.net/ob_start -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can output_buffering be set in a script?

2006-03-30 Thread Joe Henry
On Thursday 30 March 2006 9:02 am, Todd Cary wrote: I do not have access to the php.ini file and I need to have output_buffering turned on. Can this be done within a script? Thank you Yep. http://us2.php.net/manual/en/function.ob-start.php That link should get you started. -- Joe Henry

Re: [PHP] Can output_buffering be set in a script?

2006-03-30 Thread Stephen Johnson
, 30 Mar 2006 08:02:16 -0800 To: php-general@lists.php.net Subject: [PHP] Can output_buffering be set in a script? I do not have access to the php.ini file and I need to have output_buffering turned on. Can this be done within a script? Thank you -- PHP General Mailing List (http