MyBB Community Forums

Full Version: need some help with mybb code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to build a brand new page for my site..
and i need that the head of the page in the forum will be also at this new page..
i mean to the
1) logo part
2) toplinks part
3) welcome back form part
----------------------------
my forum is
www.math-pl.co.il
hope u guys can help me Smile
regards,
imiviortal
some1 ? =\
Create a template with this content; name of it is free of choice.
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
</body>
</html>

Make a new .php page with this content;
<?php
// GLOBALS
define("IN_MYBB", 1);
require_once "./global.php";

eval("\$my_newpage = \"".$templates->get("NAME_OF_TEMPLATE")."\";");
output_page($my_newpage);
?>

Replace NAME_OF_TEMPLATE with the one you gave when you created the new template.

Then upload the .php file to your forumroot and browse to it; you should get a new page with just the header part. The body content you need to adjust in the template you've created.
THANKS ALOT !
i dont succeed to add some HTML code to that page..
how can i add some html code to the page?
it doesnt add any code when i type it in the .html file or either the .php file