-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathwithdraw.jsp
181 lines (138 loc) · 4.95 KB
/
withdraw.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!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=utf-8">
<title>Global Banking ..</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
function ctck()
{
var sds = document.getElementById("dum");
}
</script>
</head>
<body>
<div id="top_links">
<div id="header">
<h1>Online Banking System<span class="style1"></span></h1>
<h1>For RIO Bank Co.Ltd<span class="style1"></span></h1>
<h2>ExtraOrdinary Service</h2>
<A href="index.html"><IMG SRC="images/home1.gif"></IMG></A>
</div>
<div id="navigation">
<ul>
<li><a href="createacc.jsp">NEW ACCOUNT</a></li>
<li><a href="balance1.jsp">BALANCE</a></li>
<li><a href="deposit1.jsp">DEPOSIT</a></li>
<li><a href="withdraw1.jsp">WITHDRAW</a></li>
<li><a href="transfer1.jsp">TRANSFER</a></li>
<li><a href="closeac1.jsp">CLOSE A/C</a></li>
<li><a href="logout.jsp">LOGOUT</a></li>
</ul>
</div>
<table style="width:897px; background:#FFFFFF; margin:0 auto;">
<tr >
<td width="300" valign="top" style="border-right:#666666 1px dotted;">
<div id="services"><h1>Services</h1><br>
<ul>
<li><a href="#">www.onlinebanking.com</a></li>
<li><a href="#">www.onlineservices.com </a></li>
<li><a href="#">www.onlinemoneytransfer.com/forum.jsp</a></li>
</ul>
</div>
</td>
<td width="1200" valign="top">
<%
%>
<table><%
boolean status=false;
String num=request.getParameter("accountno");
int accountno=Integer.parseInt(num);
String username=request.getParameter("username");
String password=request.getParameter("password");
String amoun=request.getParameter("amount");
int accoun=Integer.parseInt(amoun);
String ssn=(String)session.getAttribute("ssn");
Connection con1=GetCon.getCon();
PreparedStatement ps1=con1.prepareStatement("Select * from customer where userid='"+username+"' and password='"+password+"' and ssn='"+ssn+"'");
ResultSet rs1=ps1.executeQuery();
Connection con2=GetCon.getCon();
PreparedStatement ps2=con2.prepareStatement("Select * from new_account where account_no="+accountno+"");
ResultSet rs2=ps2.executeQuery();
if(rs1.next()&&rs2.next()){
status=true;
}
try {
if(status==true){
out.print("Welcome " + username);
Connection con=GetCon.getCon();
PreparedStatement ps=con.prepareStatement("Select * from NEW_ACCOUNT where account_no=?");
ps.setInt(1,accountno);
ResultSet rs=ps.executeQuery();
int dataamount=0;
if(rs.next()){
dataamount=rs.getInt(3)-accoun;
}
Connection con4=GetCon.getCon();
PreparedStatement ps4=con4.prepareStatement("update NEW_ACCOUNT set NEW_DEPOSITS=? where account_no='"+accountno+"'");
ps4.setInt(1,dataamount);
ps4.executeUpdate();
ResultSet rs4=ps4.executeQuery();
Random r=new Random();
int tid=r.nextInt(123456789);
Connection con5=GetCon.getCon();
PreparedStatement ps5=con5.prepareStatement("insert into transaction values(?)");
ps5.setInt(1,tid);
int status5=ps5.executeUpdate();
System.out.println(status5);
Connection con6=GetCon.getCon();
PreparedStatement ps6=con6.prepareStatement("insert into withdraw values(?,?,?)");
ps6.setInt(1,accoun);
ps6.setInt(2,accountno);
ps6.setInt(3,tid);
int status6=ps6.executeUpdate();
System.out.println(status6);
if(rs4.next()){
out.print("YOUR BALANCE HAS DECREASED");
request.setAttribute("totaldataamount",dataamount);
request.setAttribute("balance","YOUR BALANCE HAS DECREASED");
%>
<jsp:forward page="Totalbalance.jsp"></jsp:forward>
<%
}
/*out.print("<table align='left' width='50%' border='4' bgcolor='###FFF'>");
out.print("<tr><th>ACCOUNT NO</th><th>USERNAME</th><th>AMOUNT</th><th>ADDRESS</th><th>PHONE</th></tr>");
while(rs.next()){
int accountno1=rs.getInt(1);
session.setAttribute("accountno",accountno1);
System.out.print(accountno);
out.print("<tr>");
out.print("<td>" + rs.getInt(1) + "</td>");
out.print("<td>" + rs.getString(2) + "</td>");
out.print("<td>" + rs.getInt(5) + "</td>");
out.print("<td>" + rs.getString(6) + "</td>");
out.print("<td>" + rs.getInt(7) + "</td>");
//out.print("<td><a href='DeleteServlet' >Delete</a></td>");
out.print("</tr>");
}
out.print("</table>");
*/
}
else{
out.print("Please check your username and Password");
request.setAttribute("balance","Please check your username and Password");
%>
<jsp:forward page="withdraw1.jsp"></jsp:forward>
<%
}
}catch (SQLException e) {
e.printStackTrace();
}
%></table><%
%>
</table>
<%@ page import="java.sql.*"%>
<%@ page import="java.io.*" %>
<%@ page import="javax.servlet.*"%>
<%@ page import="g.*" %>
<%@ page import="java.util.*"%>