when i loaded up the server 0.2.0
i first logged in and low and behold an undefined variable
was being defined,
the origional line was:
$target = $_SESSION['target'];
the modified line (to make it work):
$target = (isset($_SESSION["target"]))?$_SESSION
["target"]:"";
and that seemed to fix the problem, and it will be able to
show valid for the IF statement jsut after this variable
declaration as well.