2013-09-10, 01:40 PM
Hello, for some time I'm trying to create a new page with the style of MyBB. I created a template.
Unfortunately, so this effect (next url) pe-dm.pl/rules.php
rules.php
Help
<html>
<head>
<title>{$mybb->settings[bbname]} - Example Page</title>
{$headerinclude}
</head>
<body>
{$header}
<br />
<!-- Content: Start -->
<table border="1" align = "left">
<tr>
<td>Komórka 1</td>
<td>Komórka 2</td>
</tr>
<!-- Content: End -->
{$footer}
</body>
</html>
Unfortunately, so this effect (next url) pe-dm.pl/rules.php
rules.php
<?php
define('IN_MYBB', 1); require "./global.php";
add_breadcrumb("Title here", "somename.php");
eval("\$html = \"".$templates->get("template_name")."\";");
output_page($html);
?>
Help