Actually that doesn't work in the slightest.
In my /public/ directory, I want my index page.
/vB/global.php is the location of global.php from my index page, and this is what I used:
PHP Code:
<?php
require("./vB/global.php");
?>
<html>
<body>
<?php
$bbuser1 = $bbuserinfo['username'];
echo "You are logged in as $bbuser1.";
?>
</body>
</html>
Returns blank page...