Warning: Cannot modify header information headers already sent by...
Warning: Cannot modify header information headers already sent by... Is there some way to avoid this when combinging HTML and PHP. Perhaps a hack or code to work around.
0
Comments
If you want to add a banner to the top of your Vanilla pages, consider writing an extension: appearance_changes
<?php ob_start(); ?>
at the top of your the page. PHP will add any output to a buffer and print it at the end so that you can set your http headers in the middle of it.