// Check to make sure they've logged in as the administrator securityCheck(client.valid, client.usertype, "admin", "../login.htm"); // Dynamically generate the body string according to the attributes in the // configuration file specified as the argument of dynBody() bodystr = dynBody("settings.cfg"); if(!dbCheck()) { redirect("../error.htm?error=dbfail"); } cursor = database.cursor("select * from seeker order by last_name"); cursor.next(); // Initialize the cursor.

WorkNet Seeker Accounts

while(cursor.next()) { } cursor.close();
Last Name First Name E-mail Address UserID Password
write(cursor.last_name); write(cursor.first_name); write("" + cursor.email + ""); write(cursor.userid); write(cursor.password);

Return to the Adminstration Page.