sup.. i keep getting an error on my script.. something like...
Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /home/xlord/public_html/chall.php on line 13
can anyone tell me why.. here is my code
[code]
<?php
/**
* function library
*/
require_once('lib-common.php');
//home/xlord/public_html/layout/gameserver/header.thtml');
//Check to see if user is logged in
if(isset($_USER['uid']) >= 2) {
echo"
<TABLE WIDTH=\"100%\"><TR BGCOLOR=\"BLACK\"><TD>
Welcome $_USER['username'] </TD></TR></TABLE>
";
}if(!isset($_USER['username']) >= 2){
echo "Please reg to view this page";
}
?>
[\code]


