hi folks,
this piece of code should not display anything:
ob_start();
print_r($users) ;
ob_end_clean;
well, for me it does - does anyone know why? in fact, it looks like the
ob_xxx() commands are simply ignored except for ob_get_contents () which
works fine.
output_bufferin g is off in php.ini, but that should not make a
difference if I have understood the manual correctly.
I am using PHP 4.3.8 on a debian box w/ apache 1.3.33-3 running PHP as a
module.
thanks in advance...
martin
--
For email contact please mail to:
mail (at) mbant dot de
this piece of code should not display anything:
ob_start();
print_r($users) ;
ob_end_clean;
well, for me it does - does anyone know why? in fact, it looks like the
ob_xxx() commands are simply ignored except for ob_get_contents () which
works fine.
output_bufferin g is off in php.ini, but that should not make a
difference if I have understood the manual correctly.
I am using PHP 4.3.8 on a debian box w/ apache 1.3.33-3 running PHP as a
module.
thanks in advance...
martin
--
For email contact please mail to:
mail (at) mbant dot de
Comment