2011-10-23, 03:02 AM
This a new page with a box thingy
example 1337modding.com/test.php
example 1337modding.com/test.php
<?php
define("IN_MYBB", 1);
define('THIS_SCRIPT', 'newpage.php');
require_once "./global.php";
add_breadcrumb("My New Page", "newpage.php");
if(!$mybb->input['action']) {
$message = '
This is my new page.
';
error($message, "My New Page");
}
?>
but how do i add anotherbox on that same page like where it says This is my new page.?