This is quite a useful and really great tutorial I found here
[/align]
Make sure that the name of this template matches the one from the code earlier (so in this case template_name).
PHP:
<?php
define('IN_MYBB', 1); require "./global.php";
add_breadcrumb("Title of your page", "*.php");
eval("\$html = \"".$templates->get("template_name")."\";");
output_page($html);
?>
2)
Copy the code below into the template. You can customise this to your liking and this is just an example:
Copy the code below into the template. You can customise this to your liking and this is just an example:
PHP:
<html>
<head>
<title>Your title here</title>
{$headerinclude}
</head>
<body>
{$header}
<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead"><span class="smalltext"><strong>Your title here.</strong></span></td>
</tr>
<tr>
<td class="trow1">
Add here your custom messages.
</td></tr></table>
{$footer}
</body>
</html>