Thankyou Specialist, it resolved the include issue.
One more question..I have my code snippet like this..
<?
chdir("../Forums/");
include('global.php');
if($bbuserinfo[userid]) {
//my application
}
else {
print_please_login();
}
?>
Is this a good way to do? Or any other better ways exist?
Also, how can I select a specific style from the code here?
I want my Login page/error Page to display from a custom Style. not from the default style. Can I do that by setting some variable here ?
Thank you
|