Note Submitter: Symen
----
To check if ob_start() was allready ended before ending you
can do the following:
if (ob_get_status() != false)
{
echo "OB still active, ending OB...";
ob_end_flush();
}
--
PHP Notes Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|