EDIT::
The current code being used is :
//$username= 'lmfsthefounder';
$type = "SELECT account_type from user_attribs WHERE username='lmfsthefounder';";
$type_again = mysql_query($type);
$row = mysql_fetch_row($type_again);
$usertype = $row['account_type'];
echo $usertype;
which returns like this: Home Login Register Usertype is
When I search this query in mysql query explorer, it shows me the value is 1. I need that 1 to echo in my page.
(This should display 'Usertype is 1' in my navigation bar)