-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutcome.php
More file actions
154 lines (113 loc) · 3.5 KB
/
outcome.php
File metadata and controls
154 lines (113 loc) · 3.5 KB
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
<?php
session_start();
if (!isset($_SESSION['auth'])) {
$_SESSION['msg'] = "You must log in first";
header('location: login.php');
}
if (isset($_GET['logout'])) {
session_destroy();
unset($_SESSION['auth']);
header("location: login.php");
}
include('functions.php');
update_accounts();
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
</head>
<body>
<div class="header" style="border-bottom: 8px solid #f2e711;">
<h2 class="Welcome">Nigga rigged accounting (beta)</h2>
<div class="relative">
<style>
a {
text-decoration: none;
color: #ffffff;
}
</style>
</div>
<?php $site = basename(__FILE__, '.php');
include('server.php');
home_bar($site);
?>
<div>
<form style="height:100%; width:90%; margin: auto;" method="post" action="outcome.php" enctype="multipart/form-data">
<?php include('errors.php'); ?>
<!-- Event Name -->
<div class="input-group" style="width:50%; margin:auto; overflow: hidden;">
<label>Expense Name</label>
<input type="text" name="Expense_name" >
</div>
<!-- Event Description -->
<div class="input-group" style=" position: relative; width:50%; margin:auto;">
<label>Expense Description</label>
<textarea class="input-group" type="text" style="height:5%;" name="Expense_desc" ></textarea>
</div>
<!-- event head -->
<div class="input-group" style="width:50%; margin:auto;">
<label>Expense Category</label>
<select style="width:100%; height:70%;" name="Expense_catg" id="Expense_catg">
<?php
$query = "SELECT * FROM Budget.Budget_$user ";
$result = mysqli_query($db, $query);
// Counting system
$x = 1;
while($row = mysqli_fetch_assoc($result)) {
$category = $row['Category'];
$san_category = display_category($category);
echo " <option value=\"$category\"> $x. $san_category </option>";
$x++;
}
?>
</select>
</div>
<div class="input-group" style="width:50%; margin:auto;">
<label>Account</label>
<select style="width:100%; height:70%;" name="Account_name" id="Account_name">
<?php
$query = "SELECT * FROM Budget.Accounts WHERE Account_Owner = '$user' ";
$result = mysqli_query($db, $query);
// Counting system
$x = 1;
while($row = mysqli_fetch_assoc($result)) {
$account_name = $row['Account_name'];
echo " <option value=\"$account_name\"> $x. $account_name </option>";
$x++;
}
?>
</select>
</div>
<!-- event head email -->
<div class="input-group" style="width:50%; margin:auto;">
<label>Amount</label>
<input type="text" name="Expense_amount">
</div>
<div class="input-group">
<button style="margin-left:25%;" type="submit" class="btn-login" name="Expense">Add Transactions</button>
</div>
</form>
</body>
</html>
<?php
if (isset($_POST['Expense'])) {
$title = mysqli_real_escape_string($db, $_POST['Expense_name']);
$desc = mysqli_real_escape_string($db, $_POST['Expense_desc']);
$acnt_name = mysqli_real_escape_string($db, $_POST['Account_name']);
$amnt = mysqli_real_escape_string($db, $_POST['Expense_amount']);
$catg = mysqli_real_escape_string($db, $_POST['Expense_catg']);
$flag = "name";
// array_push($errors, "NULL");
withdrawal($title,$desc,$acnt_name,$amnt,$catg,$flag);
update_accounts();
if ($status == '0') {
echo '<script type="text/javascript">';
echo "alert('Expense Submitted ".$amnt." !');";
echo 'window.location.href = "index.php";';
echo '</script>';
}
}
?>