// 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 employer where active = 'Y'");

Click on an employer to view its profile.

while(cursor.next()) { } cursor.close();
Employer Name
write("" + cursor.busname + "");
if (client.usertype == "seeker") { write("") write("") } else if (client.usertype == "employer") { write("") write("") } else if (client.usertype == "admin") { write("") write("") }

Return to the Seeker Home Page.

Return to the Employer Home Page.

Return to the Administration Home Page.

Return to the WorkNet Home Page.