I do.
My Code is:
<?
$db=mysql_connect ("localhost", "", "") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("anderse_inventory");
$rn=("SELECT Status FROM users WHERE
username='" . $_SESSION['username']."'");
$rz=mysql_query($rn);
while($row=mysql_fetch_array($rz))
{
if($row["Status"]=="0"){
echo;("The Administrator has not yet approved your account. You will be notified when this occurs");
}else{
?>
HTML HERE
<?
}
?>
And I am still getting that error