Hmm.. getting include errors.
This is how I have my pages:
Code:
<?php
include("../config.php");
include("../header.php");
?>
// content
<?php
include("../footer.php");
?>
I tried like this but get still get include errors.
Code:
<?php
chdir("./forums");
require("./global.php");
if ($bbuserinfo[userid]==0) {
show_nopermission();
}
include("../config.php");
include("../header.php");
?>
// content
<?php
include("../footer.php");
?>
I also tried putting it after header but then it can't find the footer.