-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
186 lines (147 loc) · 7.57 KB
/
index.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap-color.min.css">
<!-- Additional CSS -->
<link rel="stylesheet" href="css/main.css">
<title>MY SHOP</title>
</head>
<body>
<?php
include_once('config.php');
include('header.php');
?>
<div class="container">
<div class="row">
<div class="col-md-4 col-12">
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-body text-dark ">
<div class="row">
<div class="col-4">
<img src="img/equipment.png" alt="equipment" class="img-fluid">
</div>
<dic class="col-8">
<h5 class="card-title"><strong>ORDINI ATTIVI</strong></h5>
<h4 class="card-text"><?php
$select_borrow_data2 = "SELECT COUNT(DISTINCT numord) AS totalorders FROM ordini WHERE status = 'active'";
$select_borrow_data_result2 = mysqli_query($db, $select_borrow_data2);
$row_borrow_data2 = mysqli_fetch_assoc($select_borrow_data_result2);
echo $row_borrow_data2['totalorders']; ?></h4>
</dic>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-body text-dark ">
<div class="row">
<div class="col-4">
<img src="img/user.png" alt="equipment" class="img-fluid">
</div>
<dic class="col-8">
<h5 class="card-title"><strong>ORDINI SCADUTI</strong></h5>
<h4 class="card-text"><?php
$querydate = "SELECT CAST(now() AS date) AS datetoday";
$querydate2 = mysqli_query($db, $querydate);
$midquery = mysqli_fetch_assoc($querydate2);
$todaydate = $midquery['datetoday'];
$select_borrow_data3 = "SELECT COUNT(DISTINCT numord) as expiredorders FROM ordini WHERE status = 'active' and returndate < '$todaydate'";
// $select_borrow_data3 = "SELECT COUNT(DISTINCT numord) as expiredorders FROM ordini WHERE status = 'active' and returndate < now()";
$select_borrow_data_result3 = mysqli_query($db, $select_borrow_data3);
$row_borrow_data3 = mysqli_fetch_assoc($select_borrow_data_result3);
echo $row_borrow_data3['expiredorders']; ?></h4>
</dic>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-body text-dark ">
<div class="row">
<div class="col-4">
<img src="img/money.png" alt="equipment" class="img-fluid">
</div>
<dic class="col-8">
<h5 class="card-title"><strong>IN SCADENZA OGGI </strong></h5>
<h4 class="card-text"><?php
$querydate = "SELECT CAST(now() AS date) AS datetoday";
$querydate2 = mysqli_query($db, $querydate);
$midquery = mysqli_fetch_assoc($querydate2);
$todaydate = $midquery['datetoday'];
$select_borrow_data4 = "SELECT COUNT(DISTINCT numord) as expiretoday FROM ordini WHERE status = 'active' and returndate = '$todaydate'";
$select_borrow_data_result4 = mysqli_query($db, $select_borrow_data4);
$row_borrow_data4 = mysqli_fetch_assoc($select_borrow_data_result4);
echo $row_borrow_data4['expiretoday']; ?></h4>
</dic>
</div>
</div>
</div>
</div>
</div>
</div>
</br>
<div class="col">
<button id="myBtn" class="btn btn-warning">aggiungi cliente</button>
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>
<div class="col-12">
<form method="POST" action="nuovo-cliente-query.php">
<span> <strong> Aggiungi nuovo cliente </strong> </span>
<div class="row mt-3">
<div class="col">
<input type="text" class="form-control" name="username" placeholder="Nome e Cognome"
required>
</div>
<div class="col">
<button type="submit" class="btn btn-primary btn-block" name="adduser">Aggiungi</button>
</div>
</div>
</form>
</div>
</p>
</div>
<!--
</div>
</div>
</div>
-->
<script>
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on the button, open the modal
btn.onclick = function () {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function () {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function (event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.2.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>