-
Notifications
You must be signed in to change notification settings - Fork 0
/
BankWithdrawCode.php
57 lines (50 loc) · 2 KB
/
BankWithdrawCode.php
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
<?php
session_start();
if (!isset($_SESSION['User'])& empty($_SESSION['User'])) {
header('location: Login.php');
}
?>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "bank";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
if(!empty($_POST["AccNo"])) {
$sql = "SELECT Number_of_Withdrawals,Account_Plan_ID,Balance FROM savings_account NATURAL JOIN account WHERE Account_No='". $_POST["AccNo"] ."'";
$result = $conn->query($sql);
if ($result->num_rows > 0){
while($row = $result->fetch_assoc()) {
$remainder= $row["Balance"]-$_POST["amount"];
if ($row["Account_Plan_ID"]==1 ){
echo " This is a Child Account. Cannot withdraw money";
}elseif ($row["Number_of_Withdrawals"]>=5){
echo " Monthly withrawal limit exceeded. cannot withdraw money";
}elseif ( $remainder <1000 and $row["Account_Plan_ID"]==(3 or 4)){
echo "Account Balance is insufficient";
}elseif ( $remainder <500 and $row["Account_Plan_ID"]==2){
echo "Account Balance is insufficient";
}else{
$sql = "SET autocommit = OFF;
START TRANSACTION;
UPDATE account SET Balance = Balance-'" . $_POST["amount"] . "'WHERE Account_No='".$_POST["AccNo"] ."';
INSERT INTO transaction_detail(Account_No,Amount,Withdraw,Balance,Detail,Teller) values ('" . $_POST["AccNo"] . "','" . $_POST["amount"] . "',True,(SELECT balance from account WHERE Account_No='".$_POST["AccNo"] ."'),'BNK','".$_SESSION['User']."');
INSERT INTO bank_transaction (Transaction_ID) values ((SELECT LAST_INSERT_ID()));
UPDATE savings_account SET Number_of_Withdrawals = Number_of_Withdrawals+1 WHERE Account_No='".$_POST["AccNo"] ."';
COMMIT;";
echo "Withdrawal Successful";
$conn->multi_query($sql);
unset($_POST);
$_POST=array();
}
}
}
}
$conn->close();
header( "refresh:2;url=BankTransaction.php" );
?>