-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckuser.jsp
56 lines (51 loc) · 2.32 KB
/
checkuser.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%@page import ="java.sql.*" %>
<%@page import ="java.io.IOException" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@page import="java.io.*"%>
<%
String uname = request.getParameter("uname");
String password = request.getParameter("password");
String driver = "com.mysql.jdbc.Driver";
String dbURL = "jdbc:mysql://127.0.0.1/login";
String dbuser = "root";
String dbpassword = "";
Connection theConnection = null;
PreparedStatement theStatement = null;
try{
Class.forName(driver);
theConnection=DriverManager.getConnection(dbURL,dbuser,dbpassword);
theStatement = theConnection.prepareStatement("select * from users where uname=? and password=?");
theStatement.setString(1,request.getParameter("uname"));
theStatement.setString(2,request.getParameter("password"));
ResultSet theResult = theStatement.executeQuery();
if(theResult.next())
{
System.out.println("Success");
String name = request.getParameter("uname");
out.print("Welcome "+name);
session.setAttribute("uname",name);
String sname = new String();
sname = "admin";
if(name.equals(sname))
{
response.sendRedirect("admin/index.jsp");
}
else
{
//
response.sendRedirect("index.jsp");
}
}
else
{
request.setAttribute("errorMessage", "Invalid username or password");
RequestDispatcher dispatcher = request.getRequestDispatcher("login.jsp");
dispatcher.forward( request, response);
// System.out.println("Failed");
// response.sendRedirect("login.jsp");
}
}catch(Exception e){
System.out.println("Exception occured! "+e.getMessage()+" "+e.getStackTrace());
response.sendRedirect("login.jsp");
}
%>