// Security check - make sure they've logged in. If not, send them // to the LOGIN page. securityCheck(client.valid, client.usertype, "employer", "../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 jobs where empid = '" + client.userID + "'");

Click on a JobID to view and edit its contents.

Click here to Add a Job

while(cursor.next()) { } cursor.close();
JobID Title Description City
write("" + cursor.jobid + ""); write(cursor.title); if (cursor.desc != null) { descrip = unEscString(cursor.desc); write(descrip); } write(cursor.lcity);

Return to the Employer Home Page.