include "config.inc";
include "include/rand.php";
include_once("counter/counter.php");
if(isStudent())
{
goPage("/student_study.php");
exit;
}
if(isTeacher())
{
goPage("/teacher.php");
exit;
}
if(isAdmin())
{
goPage("/adminuser/htglxt.php");//manager
exit;
}
?>