MyBB Codes

Full Version: How to Display All of MyBB's Variables
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is a cool trick I picked up =)

Make a php file with this code:

Code:
<?php
define("IN_MYBB", 1);
include "global.php";
echo '<pre>';
print_r($mybb);
echo '</pre>';

?>


Then simply load the page in your browser! Every MyBB variable!
Try it in local and Enjoy from all values show
Reference URL's