MyBB Community Forums

Full Version: Custom PHP file with MyBB header and footer?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I include the header and footer template into my custom PHP file?
<?php
define("IN_MYBB");
require_once("global.php");
echo "<html>";
echo "<head>";
echo $headerinclude;
echo "</head><body>";
echo $header;
echo "your content"
echo $footer;
?>