Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. int rph_id = Integer.parseInt(request.getParameter("rph_id"));
  2. String rph_date = request.getParameter("rph_date");
  3. String rph_time = request.getParameter("rph_time");
  4. String rph_type = request.getParameter("rph_type");
  5. int teacher_id = Integer.parseInt(request.getParameter("teacher_id"));
  6. int subject_id = Integer.parseInt(request.getParameter("subject_id"));
  7. String rph_submitstatus = null;
  8. String rph_comment = null;
  9.  
  10. RPHS rph = new RPHS(rph_date, rph_time, rph_type, rph_submitstatus, rph_comment, teacher_id, subject_id, false);
  11. rph = RphDAO.getRph(rph);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement