-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck.php
More file actions
97 lines (70 loc) · 1.83 KB
/
check.php
File metadata and controls
97 lines (70 loc) · 1.83 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
<?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);
?>
<!-- table style -->
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</div>
<form style="height:100%; width:90%; margin: auto;" method="post" action="check.php" enctype="multipart/form-data">
<?php include('errors.php'); ?>
<!-- Event Name -->
<div class="input-group" style="width:50%; margin:auto; overflow: hidden;">
<label>Net income</label>
<input type="text" name="Net" >
</div>
<div class="input-group">
<button style="margin-left:25%;" type="submit" class="btn-login" name="Deposit">Add Check</button>
</div>
</form>
<?php
if (isset($_POST['Deposit'])) {
$net = mysqli_real_escape_string($db, $_POST['Net']);
// array_push($errors, "NULL");
clear_slate();
reset_budget();
if (create_budget($net)){
input_check($net);
echo '<script type="text/javascript">';
echo "alert('Check Submitted ".$net." !');";
echo 'window.location.href = "index.php";';
echo '</script>';
}
}
?>