MyBB Community Forums

Full Version: Somone Help Real Quick
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This a new page with a box thingy
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.?