This is the message I'm given:
Parse error: parse error in
/home/yada/yada-yada/yada/head.php on line
71
Line 71 is the line with the if-statement:
PHP Code:
<?php
error reporting(7);
chdir('/home/yada/yada-yada/forums');
require('./global.php');
if ($bbuserinfo['userid'] != 0) {
$username = $bbuserinfo['username'];
echo "Welcome_back, <b>$username</b>.";
} else {
echo "Please log in.";
}
?>