if (client.userID != null) { if(!dbCheck()) { redirect("../error.htm?error=dbfail"); } // create an updatable cursor on the SEEKER table. cursor = database.cursor("select * from seeker where userid='" + client.userID + "'", true); cursor.next(); cursor.first_name = request.first_name; cursor.last_name = request.last_name; cursor.email = request.email; cursor.url = request.url; cursor.addr1 = request.addr1; cursor.city = request.city; cursor.state = request.state; cursor.country = request.country; cursor.postalcode = request.postalcode; cursor.phone = request.phone; cursor.fax = request.fax; cursor.lcity = request.lcity cursor.lcountry = request.lcountry; cursor.lstate = request.lstate; cursor.salarylow = request.salarylow; cursor.education = request.education; cursor.yearsexp = request.yearsexp; cursor.skills = request.skills; cursor.covlet = escString(request.covlet); // process string for storage (see lib/sqlstr.js) cursor.personal = request.personal; cursor.updateRow("SEEKER"); cursor.close(); } // END IF redirect("confirm.htm?type=seeker");