MyBB Community Forums

Full Version: ADD Our Custom HTML Pages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.


How TO ADD Custom HTML Pages
you can use page manager plugin. see example pages here
http://www.facebook.com/l.php?u=http%3A%...=AAQGYnaBl

Could You Please help Me Following Above Method Sad
^ well, that tutorial is well explained. what exactly you want to put on a custom page
I Am Not Able To Make .. :-(

I Want To Display Points Table With Some Pictures

(2013-06-29, 04:40 PM).m. Wrote: [ -> ]^ well, that tutorial is well explained. what exactly you want to put on a custom page

You Just Explain Above Method Smile

Or Can You Tell Make Blank Pages iN Forum And i WIll Edit Them
^ if you are getting errors while trying custom page then give them - or post your code so that someone can check
i want to know from beginning how to make a page which has only has hi in it (imagine)
^ here is a simple page. upload it (eg. hi.php) to your MyBB forum root and check
<?php

define('IN_MYBB', 1);
require "./global.php";
echo $headerinclude;
echo "<title>my page - hi</title>";
echo $header;
$html = '<strong>hi</strong>';

// OUTPUT
output_page($html);
echo $footer;

?>