Guest User

Untitled

a guest
Oct 26th, 2018
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. response.setContentType("text/html");
  2. PrintWriter out = response.getWriter();
  3. String full_name = request.getParameter("full_name");
  4. String email = request.getParameter("email_id");
  5. String contact = request.getParameter("mobile");
  6. String password = request.getParameter("password");
  7. String confirm_password = request.getParameter("comfirm_password");
  8.  
  9. try
  10. {
  11. Class.forName("com.mysql.jdbc.Driver");
  12. Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/email","root","");
  13. }
  14. catch(Exception e)
  15. {
  16.  
  17. }
Add Comment
Please, Sign In to add comment