forked from WebdeveloperIsaac/Alumini-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewalumini.jsp
56 lines (49 loc) · 1.49 KB
/
viewalumini.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 language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ page import="java.sql.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>All Alumini</title>
<link rel="stylesheet" href="./css/studentupdated.css" >
</head>
<body>
<div class="container">
<h1>All Alumini Information</h1>
<div class="eventscontainer" >
<table border="2">
<tr id="header">
<th>Name</th>
<th>USN</th>
<th>Batch</th>
<th>E-mail</th>
<th>Branch</th>
</tr>
<%
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost/ams","root","root");
Statement st=con.createStatement();
ResultSet res =st.executeQuery("select * from aluminiv");
while(res.next()){
%>
<tr>
<td><%=res.getString(1) %></td>
<td><%=res.getString(2) %></td>
<td><%=res.getString(3) %></td>
<td><%=res.getString(4) %></td>
<td><%=res.getString(6) %></td>
</tr>
<%
}
}
catch(Exception e) {
System.out.println(e);
}
%>
</table>
</div>
</div>
</body>
</html>