Posted by Emil Novak on 09/30/05 16:36
You can simply avoid that by buffering the output: <?php ob_start(); // your code // ... ob_end_flush(); ?> or (older versions of PHP): <?php ob_start(); // your code // ... echo ob_get_contents(); ?> Emil Novak, Slovenia, EU
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming