-
Notifications
You must be signed in to change notification settings - Fork 50
/
bank.php
executable file
·141 lines (133 loc) · 3.94 KB
/
bank.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
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
<?php
session_start();
require "global_func.php";
if ($_SESSION['loggedin'] == 0)
{
header("Location: login.php");
exit;
}
$userid = $_SESSION['userid'];
require "header.php";
$h = new headers;
$h->startheaders();
include "mysql.php";
global $c;
$is =
mysql_query(
"SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",
$c) or die(mysql_error());
$ir = mysql_fetch_array($is);
check_level();
$fm = money_formatter($ir['money']);
$cm = money_formatter($ir['crystals'], '');
$lv = date('F j, Y, g:i a', $ir['laston']);
$h->userdata($ir, $lv, $fm, $cm);
$h->menuarea();
print "<h3>Bank</h3>";
if ($ir['bankmoney'] > -1)
{
switch ($_GET['action'])
{
case "deposit":
deposit();
break;
case "withdraw":
withdraw();
break;
default:
index();
break;
}
}
else
{
if (isset($_GET['buy']))
{
if ($ir['money'] > 49999)
{
print
"Congratulations, you bought a bank account for \$50,000!<br />
<a href='bank.php'>Start using my account</a>";
mysql_query(
"UPDATE users SET money=money-50000,bankmoney=0 WHERE userid=$userid",
$c);
}
else
{
print
"You do not have enough money to open an account.
<a href='explore.php'>Back to town...</a>";
}
}
else
{
print
"Open a bank account today, just \$50,000!<br />
<a href='bank.php?buy'>> Yes, sign me up!</a>";
}
}
function index()
{
global $ir, $c, $userid, $h;
print
"\n<b>You currently have \${$ir['bankmoney']} in the bank.</b><br />
At the end of each day, your bank balance will go up by 2%.<br />
<table width='75%' border='2'> <tr> <td width='50%'><b>Deposit Money</b><br />
It will cost you 15% of the money you deposit, rounded up. The maximum fee is \$3,000.<form action='bank.php?action=deposit' method='post'>
Amount: <input type='text' name='deposit' value='{$ir['money']}' /><br />
<input type='submit' value='Deposit' /></form></td> <td>
<b>Withdraw Money</b><br />
There is no fee on withdrawals.<form action='bank.php?action=withdraw' method='post'>
Amount: <input type='text' name='withdraw' value='{$ir['bankmoney']}' /><br />
<input type='submit' value='Withdraw' /></form></td> </tr> </table>";
}
function deposit()
{
global $ir, $c, $userid, $h;
$_POST['deposit'] = abs((int) $_POST['deposit']);
if ($_POST['deposit'] > $ir['money'])
{
print "You do not have enough money to deposit this amount.";
}
else
{
$fee = ceil($_POST['deposit'] * 15 / 100);
if ($fee > 3000)
{
$fee = 3000;
}
$gain = $_POST['deposit'] - $fee;
$ir['bankmoney'] += $gain;
mysql_query(
"UPDATE users SET bankmoney=bankmoney+$gain, money=money-{$_POST['deposit']} where userid=$userid",
$c);
print
"You hand over \${$_POST['deposit']} to be deposited, <br />
after the fee is taken (\$$fee), \$$gain is added to your account. <br />
<b>You now have \${$ir['bankmoney']} in the bank.</b><br />
<a href='bank.php'>> Back</a>";
}
}
function withdraw()
{
global $ir, $c, $userid, $h;
$_POST['withdraw'] = abs((int) $_POST['withdraw']);
if ($_POST['withdraw'] > $ir['bankmoney'])
{
print "You do not have enough banked money to withdraw this amount.";
}
else
{
$gain = $_POST['withdraw'];
$ir['bankmoney'] -= $gain;
mysql_query(
"UPDATE users SET bankmoney=bankmoney-$gain, money=money+$gain where userid=$userid",
$c);
print
"You ask to withdraw $gain, <br />
the banking lady grudgingly hands it over. <br />
<b>You now have \${$ir['bankmoney']} in the bank.</b><br />
<a href='bank.php'>> Back</a>";
}
}
$h->endpage();