$name | $level | $awarded |
");
$number=db_num_rows($result);
for ($i=0;$i<$number;$i++){
$row = db_fetch_assoc($result);
rawoutput("");
output_notl($row['name']);
rawoutput(" | ");
output_notl($row['level']);
rawoutput(" | ");
output_notl($row['refererawarded']?$yes:$no);
rawoutput(" |
");
}
if (db_num_rows($result)==0){
rawoutput("");
output_notl($none);
rawoutput(" |
");
}
rawoutput("",true);
page_footer();
}else{
page_header("Welcome to Legend of the Green Dragon");
output("`@Legend of the Green Dragon is a remake of the classic BBS Door Game Legend of the Red Dragon.");
output("Adventure into the classic realm that was one of the world's very first multiplayer roleplaying games!");
addnav("Create a character","create.php?r=".HTMLEntities(httpget('r'), ENT_COMPAT, getsetting("charset", "ISO-8859-1")));
addnav("Login Page","index.php");
page_footer();
}
?>