Admin Page and more
This commit is contained in:
49
f8l_exception/Fifteen Functions.txt
Normal file
49
f8l_exception/Fifteen Functions.txt
Normal file
@@ -0,0 +1,49 @@
|
||||
F8L Exception -- 15 Functions:
|
||||
|
||||
1. Add New User
|
||||
Add New Account (checking/savings)
|
||||
Add New Loan
|
||||
Add New CreditCard
|
||||
|
||||
2. Change Password
|
||||
Reset Password
|
||||
|
||||
3. View Account Statement (checking/savings)
|
||||
|
||||
4. Overdraft Fee (Trigger)
|
||||
charge $25 fee if balance dips below zero
|
||||
|
||||
5. ATM Fee (Trigger)
|
||||
charge $3 fee every time function ATMwithdraw is used
|
||||
|
||||
6. Late Payment (Trigger)
|
||||
charge $10 fee for every late payment
|
||||
|
||||
7. Low Balance (Admin - Stored Procedure)
|
||||
generate a list of users with accounts that have balances <$20
|
||||
|
||||
8. Daily Login (Admin - Stored Procedure)
|
||||
generate a list of users who logged in today
|
||||
|
||||
9. Loyalty Program (Admin - Stored Procedure)
|
||||
generate a list of users with more than $10,000 combined balance
|
||||
and have been customer for over 1 year
|
||||
|
||||
10. Annual Credit Card Fee (Trigger)
|
||||
charge a $20 per year fee to all credit card accounts
|
||||
|
||||
11. No cc w/ $> (Admin)
|
||||
examines all accounts.
|
||||
if account is greater than $5,000, offer a credit card.
|
||||
|
||||
12. Archive Transaction table (Stored Procedure)
|
||||
manually run a procedure that archives transactions older than 7 days
|
||||
|
||||
13. Delete Inactive Checking/Savings Accounts (Admin)
|
||||
delete all Ch/Sa accounts that have $0 balance and have not been accessed in 60 days
|
||||
this delete will cascade through the Transactions table
|
||||
|
||||
14. Increase Credit Card Limit (Admin)
|
||||
|
||||
15. Daily Transactions Tally (Admin)
|
||||
show the sum of all deposits and withdraws for one day
|
||||
45
f8l_exception/admin.php
Normal file
45
f8l_exception/admin.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
include 'includes/inc_header.php';
|
||||
include 'includes/inc_validateInput.php';
|
||||
include 'includes/inc_validateLogin.php';
|
||||
|
||||
echo <<<_END
|
||||
<!-- F8L Exception Online Bank | Admin Login -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>F8L Exception Online Bank | Admin Login</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<link rel = 'stylesheet' href='styles.css' type='text/css'></link>
|
||||
</head>
|
||||
<body>
|
||||
<hr />
|
||||
<h1>Admin Login</h1>
|
||||
|
||||
_END;
|
||||
|
||||
global $errorMessage;
|
||||
$errorCount = 0;
|
||||
$errorMessage = $userName = $password = "";
|
||||
|
||||
if (isset($_POST['Submit'])){
|
||||
$userName = validateInput($_POST['userName'],"User Name");
|
||||
$password = validateInput($_POST['password'],"Password");
|
||||
|
||||
//Check if there is an error on userName and/or password. If not, go to admin home page.
|
||||
if ($errorMessage != ""){
|
||||
header("Location: http://mywebsite.localdomain/cs157a/cs157AOnlineBanking/f8l_exception/admin_home.php");
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
echo <<<_END
|
||||
<form method="POST" action="admin.php">$errorMessage
|
||||
<p>User Name <input type="text" name="userName" /></p>
|
||||
<p>Password <input type="password" name="password" /></p>
|
||||
<p><input type="submit" name="Submit" value="Log in" /></p>
|
||||
</form>
|
||||
_END;
|
||||
?>
|
||||
44
f8l_exception/admin_home.php
Normal file
44
f8l_exception/admin_home.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
include 'includes/inc_header.php';
|
||||
echo <<<_END
|
||||
<!-- F8L Exception Online Bank | Admin Home -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>F8L Exception Online Bank | Admin Home</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<link rel = 'stylesheet' href='styles.css' type='text/css'></link>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Admin Home</h1>
|
||||
<hr />
|
||||
_END;
|
||||
|
||||
echo <<<_END
|
||||
<form action="admin_home.php" method="post">
|
||||
<select name="view">
|
||||
<option value=""></option>
|
||||
<option value="lowBalance">Low Balance Account</option>
|
||||
<option value="increaseLimit">Increase Credit Limit</option>
|
||||
<option value="offerCredit">Offer Credit</option>
|
||||
</select>
|
||||
<input type="submit" value="View">
|
||||
</form>
|
||||
_END;
|
||||
|
||||
if (isset($_POST['view'])){
|
||||
if ($_POST['view'] == 'lowBalance'){
|
||||
echo "low balance!";
|
||||
} elseif ($_POST['view'] == 'increaseLimit'){
|
||||
echo "increase limit!";
|
||||
} elseif ($_POST['view'] == 'offerCredit'){
|
||||
echo "offer a credit card!";
|
||||
}
|
||||
}
|
||||
|
||||
function viewLowBalance(){
|
||||
|
||||
}
|
||||
?>
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Change Password -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -8,11 +6,14 @@ session_start(); ?>
|
||||
<head>
|
||||
<title>F8L Exception Online Bank | Change Password</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Change Password</h1><hr />
|
||||
<?php
|
||||
include 'includes/inc_header.php';
|
||||
?>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Change Password</h1>
|
||||
<?php
|
||||
include 'includes/inc_validatePassword.php';
|
||||
include 'includes/inc_validateInput.php';
|
||||
@@ -53,7 +54,7 @@ function displayForm($userName) {
|
||||
<br /><br />
|
||||
|
||||
<?php
|
||||
include 'includes/inc_text_menu.php';
|
||||
|
||||
}
|
||||
|
||||
$showForm = TRUE;
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Deposit -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | Deposit</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Deposit</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Deposit</h1>
|
||||
<?php
|
||||
include 'includes/inc_validateInput.php';
|
||||
include 'includes/inc_validateLogin.php';
|
||||
@@ -104,7 +103,6 @@ else {
|
||||
echo $errorMessage."<br />";
|
||||
}
|
||||
}
|
||||
include 'includes/inc_text_menu.php';
|
||||
?>
|
||||
|
||||
</body>
|
||||
|
||||
@@ -1 +1,19 @@
|
||||
<a href="index.php"><img src="artwork/f8l_exception_logo.png" alt="F8L Exception Online Bank"></a>
|
||||
<link rel = 'stylesheet' href='styles.css' type='text/css'>
|
||||
<center><a href="index.php"><img src="artwork/f8l_exception_logo.png" alt="F8L Exception Online Bank"></a></center>
|
||||
<?php
|
||||
session_start();
|
||||
|
||||
if (isset($_SESSION['login'])){
|
||||
$user = $_SESSION['login'];
|
||||
$loggedin = TRUE;
|
||||
$userstr = " ($user)";
|
||||
} else {
|
||||
$loggedin = FALSE;
|
||||
}
|
||||
$loggedin = FALSE;
|
||||
if ($loggedin){
|
||||
include 'includes/inc_loggedin_text_menu.php';
|
||||
} else {
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
?>
|
||||
@@ -6,10 +6,10 @@
|
||||
<a href="my_accounts.php">My Accounts</a> |
|
||||
<a href="deposit.php">Deposit</a> |
|
||||
<a href="withdraw.php">Withdraw</a> |
|
||||
<a href="ransfer.php">Transfer</a> |
|
||||
<a href="transfer.php">Transfer</a> |
|
||||
<a href="view_statement.php">View Statement</a>
|
||||
<br />
|
||||
<a href="new_loan.php">New Loan</a> |
|
||||
<a href="ew_account.php">New Account</a> |
|
||||
<a href="new_account.php">New Account</a> |
|
||||
<a href="loan_payment.php">Make Loan Payment</a>
|
||||
<br />
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
//session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Home -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -11,22 +11,6 @@ session_start(); ?>
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
</head>
|
||||
|
||||
<?php
|
||||
if (isset($_SESSION['user'])){
|
||||
$user = $_SESSION['user'];
|
||||
$loggedin = TRUE;
|
||||
$userstr = " ($user)";
|
||||
} else {
|
||||
$loggedin = FALSE;
|
||||
}
|
||||
|
||||
if ($loggedin){
|
||||
include 'includes/inc_loggedin_text_menu.php';
|
||||
} else {
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
?>
|
||||
|
||||
<body>
|
||||
<hr />
|
||||
<h1>Welcome to F8L Exception Online Bank!</h1>
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Make a Loan Payment -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | Make a Loan Payment</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Make a Loan Payment -- Under construction</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Make a Loan Payment -- Under construction</h1>
|
||||
<?php
|
||||
include 'includes/inc_validatePassword.php';
|
||||
include 'includes/inc_validateEmail.php';
|
||||
@@ -61,7 +60,6 @@ function displayForm($First, $Last, $Email, $Login) {
|
||||
<br /><br />
|
||||
|
||||
<?php
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
|
||||
$showForm = TRUE;
|
||||
@@ -116,7 +114,6 @@ else {
|
||||
mail($Email,$subject,$message,"From: $from\n");
|
||||
|
||||
echo "<p>" . $First . "\nyour account has been created. Welcome to PVault!.</p><br /><br />\n";
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
//session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Login -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -8,11 +8,14 @@ session_start(); ?>
|
||||
<head>
|
||||
<title>F8L Exception Online Bank | Login</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Login</h1><hr />
|
||||
<?php
|
||||
include 'includes/inc_header.php';
|
||||
?>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Login</h1>
|
||||
<?php
|
||||
include 'includes/inc_validateInput.php';
|
||||
include 'includes/inc_validateLogin.php';
|
||||
@@ -31,7 +34,7 @@ function displayForm() {
|
||||
<br /><br />
|
||||
|
||||
<?php
|
||||
include 'includes/inc_text_menu.php';
|
||||
|
||||
}
|
||||
|
||||
$ShowForm = TRUE;
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- PVault | Logout -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -15,7 +13,6 @@ session_start(); ?>
|
||||
session_unset();
|
||||
session_destroy();
|
||||
?><script language="JavaScript">window.location = "index.php";</script><?php
|
||||
include 'includes/inc_text_menu.php';
|
||||
?>
|
||||
|
||||
</body>
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | My Accounts -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | My Accounts</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>My Accounts</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>My Accounts</h1>
|
||||
<?php
|
||||
function showAccounts($userName) {
|
||||
include 'includes/inc_dbConnect.php';
|
||||
@@ -56,8 +55,6 @@ $userName = $_SESSION['login'];
|
||||
echo "User Name: ".$userName."<br />";
|
||||
showAccounts($userName);
|
||||
|
||||
include 'includes/inc_text_menu.php';
|
||||
|
||||
?>
|
||||
|
||||
</body>
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Open New Account -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | Open New Account</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Open a New Account</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Open a New Account</h1>
|
||||
<?php
|
||||
include 'includes/inc_validateInput.php';
|
||||
include 'includes/inc_getNumberOfAccounts.php';
|
||||
@@ -106,7 +105,6 @@ else {
|
||||
}
|
||||
}
|
||||
}
|
||||
include 'includes/inc_text_menu.php';
|
||||
?>
|
||||
|
||||
</body>
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | New Customer -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -8,11 +6,14 @@ session_start(); ?>
|
||||
<head>
|
||||
<title>F8L Exception Online Bank | Register a New Customer</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Register a New Customer</h1><hr />
|
||||
<?php
|
||||
include 'includes/inc_header.php';
|
||||
?>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Register a New Customer</h1>
|
||||
<?php
|
||||
include 'includes/inc_validatePassword.php';
|
||||
include 'includes/inc_validateUserName.php';
|
||||
@@ -57,7 +58,7 @@ function displayForm($userName,$email) {
|
||||
<br /><br />
|
||||
|
||||
<?php
|
||||
include 'includes/inc_text_menu.php';
|
||||
|
||||
}
|
||||
|
||||
$showForm = TRUE;
|
||||
@@ -106,7 +107,6 @@ else {
|
||||
mail($email,$subject,$message,"From: $from\n");
|
||||
|
||||
echo "<p>You have been set up as a new customer. Welcome to F8L Exception Online Bank!.</p><br /><br />\n";
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | New Loan -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | New Loan</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>New Loan -- Under construction</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>New Loan -- Under construction</h1>
|
||||
<?php
|
||||
include 'includes/inc_validatePassword.php';
|
||||
include 'includes/inc_validateEmail.php';
|
||||
@@ -61,7 +60,6 @@ function displayForm($First, $Last, $Email, $Login) {
|
||||
<br /><br />
|
||||
|
||||
<?php
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
|
||||
$showForm = TRUE;
|
||||
@@ -116,7 +114,6 @@ else {
|
||||
mail($Email,$subject,$message,"From: $from\n");
|
||||
|
||||
echo "<p>" . $First . "\nyour account has been created. Welcome to PVault!.</p><br /><br />\n";
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Reset Password -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | Reset Password</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Reset Password</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Reset Password</h1>
|
||||
<?php
|
||||
include 'includes/inc_generatePassword.php';
|
||||
include 'includes/inc_validateInput.php';
|
||||
@@ -67,7 +66,6 @@ function displayForm() {
|
||||
<br /><br />
|
||||
|
||||
<?php
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
|
||||
$ShowForm = TRUE;
|
||||
|
||||
14
f8l_exception/styles.css
Normal file
14
f8l_exception/styles.css
Normal file
@@ -0,0 +1,14 @@
|
||||
body {
|
||||
width : 900px;
|
||||
height : 800px;
|
||||
margin : 20px auto;
|
||||
background: #f8f8f8;
|
||||
border : 4px solid #888;
|
||||
border-radius: 40px;
|
||||
-moz-border-radius :40px;
|
||||
-webkit-border-radius:40px;
|
||||
}
|
||||
|
||||
img {
|
||||
padding-top: 20px;
|
||||
}
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Transfer -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | Transfer</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Transfer</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Transfer</h1>
|
||||
<?php
|
||||
include 'includes/inc_validateInput.php';
|
||||
include 'includes/inc_validateLogin.php';
|
||||
@@ -113,7 +112,6 @@ else {
|
||||
echo $errorMessage."<br />";
|
||||
}
|
||||
}
|
||||
include 'includes/inc_text_menu.php';
|
||||
?>
|
||||
|
||||
</body>
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | View Statement -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | View Statement</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>View Statement -- Under construction</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>View Statement -- Under construction</h1>
|
||||
<?php
|
||||
function displayTable() {
|
||||
global $Login;
|
||||
@@ -71,7 +70,6 @@ function displayTable() {
|
||||
mysql_free_result($QueryResult);
|
||||
}
|
||||
}
|
||||
include 'includes/inc_text_menu.php';
|
||||
}
|
||||
$Login = "";
|
||||
$Login = $_SESSION['login'];
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
<?php
|
||||
session_start(); ?>
|
||||
<!-- F8L Exception Online Bank | Withdraw -->
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
@@ -9,10 +7,11 @@ session_start(); ?>
|
||||
<title>F8L Exception Online Bank | Withdraw</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<?php include 'includes/inc_header.php'; ?>
|
||||
<h1>Withdraw</h1><hr />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<hr />
|
||||
<h1>Withdraw</h1>
|
||||
<?php
|
||||
include 'includes/inc_validateInput.php';
|
||||
include 'includes/inc_validateLogin.php';
|
||||
@@ -104,7 +103,6 @@ else {
|
||||
echo $errorMessage."<br />";
|
||||
}
|
||||
}
|
||||
include 'includes/inc_text_menu.php';
|
||||
?>
|
||||
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user