Ok I am trying to use output buffering in templates to hide data instead of using echo with heredocs or quotes or any other form.
For somereason the output buffer is empty, heres an example
PHP Code:<?ob_start();?>
<?=WC_VERSION?>
<br />
<?
if ($Authentication->WebAuthenticate()) {
echo ob_get_contents();
}
ob_end_clean();







Bookmarks