2014-06-11, 04:07 AM
I don't believe it'd work that way, but I'm not certain. Also if you start a PHP page off with
You will have access to all the global variables and objects such as $mybb and $db. It's an easy way to implement permissions for the rest of your site.
<?php
define("IN_MYBB", 1);
require_once "global.php";
You will have access to all the global variables and objects such as $mybb and $db. It's an easy way to implement permissions for the rest of your site.