try again.
Forgot your password? Contact an administrator:
";
while ($admintech = mysqli_fetch_row($adminqry)[0]) {
echo "$admintech
";
}
}
} else if ($cancel) {
echo "
You are logged out. Please select a menu option at the left to continue.
";
} else {
if (!isset($_SESSION['login'])) {
// show the login form
echo "
";
} else {
$loginid = $_SESSION['login'];
$loggedinas = mysqli_fetch_row(mysqli_query($db, "select techname from techs where techid=\"$loginid\""))[0];
echo "
You are already logged in as $loggedinas. Please select a menu option at the left to continue.
";
}
}
pageblock("right", "end");
pagetable("end");
framework("end", "", "", $print);