-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.php
761 lines (652 loc) · 34.8 KB
/
Home.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
<?php
session_start();
if (!isset($_SESSION['username'], $_SESSION['password'])) {
echo "<meta http-equiv='refresh' content='0; url=index.php'>";
exit;
}
require_once('php/connect.php');
if (isset($_SESSION['fristname']))
// เเจ้งเตือน หมดอายุ ใน 24 ชม.
$sqlalert = "SELECT * FROM products WHERE hralert = 1 ";
$resultalert = mysqli_query($connect, $sqlalert);
$sqlnumalert = "SELECT SUM(hralert) AS count FROM products";
$durationnumalert = $connect->query($sqlnumalert);
$recordnumalert = $durationnumalert->fetch_array();
$totalnumalert = $recordnumalert['count'];
//image user
$sqlimguser = "SELECT * FROM user WHERE username = '" . $_SESSION['username'] . "'";
$resultimguser = mysqli_query($connect, $sqlimguser);
$sqluse = "SELECT * FROM productsuse";
$resultuse = mysqli_query($connect, $sqluse);
$sqlout = "SELECT * FROM products where day = 'หมดอายุ'";
$resultout = mysqli_query($connect, $sqlout);
// คูปองทั้งหมด
$sqlcouponall = "SELECT SUM(amount) AS count FROM products";
$ducouponall = $connect->query($sqlcouponall);
$recordcouponall = $ducouponall->fetch_array();
$totalcouponall = $recordcouponall['count'];
// คูปองคงเหลือ
$sqlcouponnow = "SELECT SUM(amountnow) AS count FROM products where day !='หมดอายุ'";
$ducouponnow = $connect->query($sqlcouponnow);
$recordcouponnow = $ducouponnow->fetch_array();
$totalcouponnow = $recordcouponnow['count'];
// คูปองหมดอายุ
$sqlcouponout = "SELECT SUM(amountnow) AS count FROM products where day ='หมดอายุ'";
$ducouponout = $connect->query($sqlcouponout);
$recordcouponout = $ducouponout->fetch_array();
$totalcouponout = $recordcouponout['count'];
// ราคาขายทั้งหมดยังไม่ลด
$sqlpricesellall = "SELECT SUM(pricesellall) AS count FROM productsuse";
$ducpricesellall = $connect->query($sqlpricesellall);
$recpricesellall = $ducpricesellall->fetch_array();
$totalpricesellall = $recpricesellall['count'];
// ราคาขายทั้งหมดลดแล้ว
$sqlpricediscount = "SELECT SUM(discountbath) AS count FROM productsuse";
$ducpricediscount = $connect->query($sqlpricediscount);
$recpricediscount = $ducpricediscount->fetch_array();
$totalpricediscount = $recpricediscount['count'];
// ลดแล้วทั้งหมดกี่บาท
$totaldiscount = $totalpricesellall - $totalpricediscount;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Home - Coupon</title>
<!-- Custom fonts for this template-->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<!-- logo headtab wev -->
<link rel="shortcut icon" type="image/x-icon" href="img/logoheadweb.ico">
<!-- Custom styles for this template-->
<link href="css/sb-admin-2.min.css" rel="stylesheet">
<!-- sweetalert2 -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.2/dist/sweetalert2.min.css">
<!-- Bootstrap5 แบบ bundle คือการนำ Popper มารวมไว้ในไฟล์เดียว -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script>
//session หมด ล้อกเอ้าใน 30 วิ 1000 = 1 วิ
var keyboard_time_out = setTimeout('close_window()', 1800000);
$(window).keypress(function() {
clearTimeout(keboard_time_out);
keyboard_time_out = setTimeout('close_window()', 1800000);
})
function close_window() {
location.href = "php/logout.php";
}
</script>
<!--css profile-->
</head>
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
<ul class="navbar-nav sidebar sidebar-dark accordion" id="accordionSidebar" style="background-color: #343a40;">
<!-- Logo sidebar -->
<a class="sidebar-brand d-flex align-items-center justify-content-center" href="Home.php">
<div class="sidebar-brand-icon rotate-n-15">
<!-- <i class="fas fa-laugh-wink"></i> -->
<img style="width: 2rem;" src="img/logo.png" alt="...">
</div>
<div class="sidebar-brand-text mx-3">
<div class="title page">
<h3 style="display: inline;">IT</h3>
<h4 style="display: inline;">Care</h4>
<sup>LAF</sup>
</div>
</div>
</a>
<!-- line white -->
<hr class="sidebar-divider my-0">
<!-- Nav Item - Dashboard -->
<li class="nav-item active">
<a class="nav-link" href="Home.php">
<i class="fas fa-fw fa-tachometer-alt"></i>
<span>Dashboard</span></a>
</li>
<!-- Divider -->
<hr class="sidebar-divider">
<!-- Heading -->
<div class="sidebar-heading">
กระบวนการสร้างคูปอง
</div>
<!-- Nav Item - Pages Collapse Menu -->
<li class="nav-item">
<a class="nav-link collapsed" href="#" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="true" aria-controls="collapseTwo">
<i class="fa fa-plus-square"></i>
<span> AddCoupon</span>
</a>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionSidebar">
<div class="bg-white py-2 collapse-inner rounded">
<!-- <h6 class="collapse-header">Custom Components:</h6> -->
<a class="collapse-item" href="Genarate.php">GenarateCoupon</a>
<a class="collapse-item" href="Allcoupon.php">Preview</a>
</div>
</div>
</li>
<!-- Divider -->
<hr class="sidebar-divider">
<!-- Heading -->
<div class="sidebar-heading">
ใช้งานคูปอง
</div>
<!-- Nav Item - Utilities Collapse Menu -->
<li class="nav-item">
<a class="nav-link collapsed" href="#" data-toggle="collapse" data-target="#collapseUtilities" aria-expanded="true" aria-controls="collapseUtilities">
<i class="fas fa-fw fa-wrench"></i>
<span>UseCoupon</span>
</a>
<div id="collapseUtilities" class="collapse" aria-labelledby="headingUtilities" data-parent="#accordionSidebar">
<div class="bg-white py-2 collapse-inner rounded">
<a class="collapse-item" href="Usecoupon.php">UseCoupon</a>
<a class="collapse-item" href="Usehistory.php">UseHistory</a>
<a class="collapse-item" href="Usetestbill.php">TestBill</a>
</div>
</div>
</li>
<!-- Divider -->
<hr class="sidebar-divider">
<!-- Heading -->
<div class="sidebar-heading">
การเคลียคูปองหมดอายุ
</div>
<li class="nav-item">
<a class="nav-link" href="Timeoutcoupon.php">
<i class="fa fa-trash" aria-hidden="true"></i>
<span> TimeoutCoupon</span></a>
</li>
<!-- Divider -->
<hr class="sidebar-divider d-none d-md-block">
</ul>
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Topbar -->
<nav class="navbar navbar-expand navbar-light bg-white topbar mb-4 static-top" style="height:3.5rem;">
<!-- Sidebar Toggle (Topbar) -->
<button id="sidebarToggleTop" class="btn btn-link d-md-none rounded-circle mr-3">
<i class="fa fa-bars"></i>
</button>
<!-- Sidebar Toggler (Sidebar) -->
<div class="text-center d-none d-md-inline">
<button class="border-0 fas fa-bars" id="sidebarToggle" style="background-color: white;color:gray;"></button>
</div>
<ol class="breadcrumb float-rm-right" style="width:300px;">
<li class="breadcrumb-item"><a href="Home.php">Home</a></li>
<li class="breadcrumb-item active">DashBoard</li>
</ol>
<script>
function hidebtn() {
if (document.getElementById("seachtop").style.visibility == 'hidden') {
document.getElementById("seachtop").style = "visibility: visible;"
} else {
document.getElementById("seachtop").style = "visibility: hidden;"
}
}
</script>
<!-- Topbar Search -->
<form class="d-none d-sm-inline-block form-inline mr-auto ml-md-3 my-2 my-md-0 mw-100 navbar-search" id="seachtop" style="visibility: hidden;">
<div class="input-group">
<input type="text" class="form-control bg-light border-0 small" placeholder="Search for ..." aria-label="Search" aria-describedby="basic-addon2">
<div class="input-group-append">
</div>
</div>
</form>
<!-- Topbar Navbar -->
<ul class="navbar-nav ml-auto">
<button class="btn btn-navbar" onclick="hidebtn()">
<i class="fas fa-search"></i>
</button>
<!-- Topbar Navbar -->
<ul class="navbar-nav ml-auto">
<!-- Nav Item - Alerts -->
<li class="nav-item dropdown no-arrow mx-1">
<a class="nav-link dropdown-toggle" href="#" id="alertsDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-bell fa-fw"></i>
<!-- ใกล้หมดอยุ่ใน 24 ชม -->
<?php if (mysqli_num_rows($resultalert) >= 1) : ?>
<span class="badge badge-danger badge-counter"><?php echo $totalnumalert ?>+</span>
<?php else : ?>
<?php endif ?>
</a>
<!-- Dropdown - Alerts -->
<div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="alertsDropdown">
<h6 class="dropdown-header">
แจ้งเตื่อนคูปองหมดอายุภายใน 24 ชั่วโมง
</h6>
<?php while ($row = mysqli_fetch_assoc($resultalert)) : ?>
<a class="dropdown-item d-flex align-items-center" href="#">
<div class="mr-3">
<div class="icon-circle">
<img style="width: 2rem;" src="img/couponalert.png" alt="...">
</div>
</div>
<div>
<div class="small text-gray-1000"><?php echo date("Y-m-d H:i:s") ?> หมดอายุในอีก <?php echo $row['day']; ?> ชม.</div>
<span class="font-weight-thin"><?php echo $row['name']; ?></span>
</div>
</a>
<?php endwhile ?>
<a class="dropdown-item text-center small text-gray-500" href="#">Show All Alerts</a>
</div>
</li>
<div class="topbar-divider d-none d-sm-block"></div>
<!-- Nav Item - User Information -->
<li class="nav-item dropdown no-arrow">
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="mr-2 d-none d-lg-inline text-gray-600 small">
<?php
echo $_SESSION["username"]
?>
</span>
<i class="mr-2 d-none d-lg-inline text-gray-600 small">
<?php
echo $_SESSION["department"]
?>
</i>
<img class="img-profile rounded-circle" src="img/undraw_profile.svg">
</a>
<!-- Dropdown - User Information -->
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown" name="dropid">
<a class="dropdown-item" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#id-modal">
<i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
Profile
</a>
<a class="dropdown-item" href="#">
<i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i>
Settings
</a>
<a class="dropdown-item" href="php/logout.php" onclick="return confirm('Do you want to sign out?')">
<i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
Logout
</a>
</div>
</li>
</ul>
</nav>
<!-- End of Topbar -->
<!-- Begin Page Content -->
<div class="container-fluid">
<!-- Page Heading -->
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h2 mb-0 text-gray-800">Dashboard</h1>
<a href="#" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i class="fas fa-download fa-sm text-white-50"></i> Export Excel</a>
</div>
<!-- Content Row -->
<div class="row">
<!-- คูปองทั้งหมด -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-primary shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="display-4 font-weight-bold text-primary text-uppercase mb-1">
<?php echo $totalcouponall ?>
<input type="text" id="totalcouponall" value=<?php echo $totalcouponall ?> style="display: none;">
<input type="text" id="totalcouponuse" value=<?php echo mysqli_num_rows($resultuse) ?> style="display: none;">
<input type="text" id="totalcouponout" value=<?php echo $totalcouponout ?> style="display: none;">
<input type="text" id="totalcouponnow" value=<?php echo $totalcouponnow ?> style="display: none;">
</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">คูปองทั้งหมด</div>
</div>
<div class="col-auto">
<i class="fa fa-archive fa-3x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- ใช้คูปอง -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-success shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="display-4 font-weight-bold text-success text-uppercase mb-1">
<?php echo mysqli_num_rows($resultuse) ?>
</div>
<div class="row no-gutters align-items-center">
<div class="col-auto">
<div class="h5 mb-0 mr-3 font-weight-bold text-gray-800">ใช้คูปอง</div>
</div>
</div>
</div>
<div class="col-auto">
<i class="fas fa-plus-square fa-3x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- คูปองคงเหลือ -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-warning shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="display-4 font-weight-bold text-warning text-uppercase mb-1">
<?php echo $totalcouponnow ?>
</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">คูปองคงเหลือ</div>
</div>
<div class="col-auto">
<i class="fas fa-database fa-3x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- คูปองหมดอายุ -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-danger shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="display-4 font-weight-bold text-danger text-uppercase mb-1">
<?php echo $totalcouponout ?>
</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">คูปองหมดอายุ</div>
</div>
<div class="col-auto">
<i class="fas fa-trash fa-3x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Content Row -->
<div class="row">
<!-- Donut Chart -->
<div class="col-xl-4 col-lg-5">
<div class="card shadow mb-4">
<!-- Card Header - Dropdown -->
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">Coupon-DonutChart</h6>
</div>
<!-- Card Body -->
<div class="card-body">
<div class="chart-pie pt-4">
<canvas id="myPieChart"></canvas>
</div>
<hr>
<div class="text-center">
<span class="mr-2">
<i class="fa fa-archive text-primary"></i> ทั้งหมด
</span>
<span class="mr-2">
<i class="fas fa-plus-square text-success"></i> ใช้ไป
</span>
<span class="mr-2">
<i class="fas fa-database text-warning"></i> คงเหลือ
</span><br>
<span class="mr-2">
<i class="fas fa-trash text-danger"></i> หมดอายุ
</span>
</div>
</div>
</div>
</div>
<div class="colum">
<div class="wrapper-range card border-left-primary shadow h-80 py-2 mb-3">
<div class="field">
<div class="value left">0</div>
<?php $totalnow = $totalcouponall - $totalcouponout?>
<input type="range" min="1" max=<?php echo$totalnow?>
value=<?php echo mysqli_num_rows($resultuse)?> steps="1">
<div class="value right"><?php echo $totalcouponall?></div>
</div>
<div class="text-center h6 mb-0 font-weight-bold text-gray-800">
<span>จำนวนการใช้คูปอง</span>
</div>
</div>
<!-- ลดไปกี่บาท -->
<div class="col-xl-13 mb-3">
<div class="card border-left-danger shadow h-80 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="display-4 font-weight-bold text-danger text-uppercase mb-1">
<?php echo $totaldiscount ?>
</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">ลดราคาไปทั้งหมด : บาท</div>
</div>
<div class="col-auto">
<i class="fas fa-dollar-sign fa-4x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<!-- ยอดขาย -->
<div class="col-xl-6 mb-3">
<div class="card border-left-warning shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="display-4 font-weight-bold text-warning text-uppercase mb-1">
<?php echo $totalpricesellall ?>
</div>
<div class="row no-gutters align-items-center">
<div class="col-auto">
<div class="h5 mb-0 mr-3 font-weight-bold text-gray-800">ยอดขายไม่หักส่วนลด : บาท</div>
</div>
</div>
</div>
<div class="col-auto">
<i class="fas fa-dollar-sign fa-3x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- ยอดขายหักส่วนลด -->
<div class="col-xl-6 mb-3">
<div class="card border-left-info shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="display-4 font-weight-bold text-info text-uppercase mb-1">
<?php echo $totalpricediscount ?>
</div>
<div class="row no-gutters align-items-center">
<div class="col-auto">
<div class="h5 mb-0 mr-3 font-weight-bold text-gray-800">ยอดขายหักส่วนลด : บาท</div>
</div>
</div>
</div>
<div class="col-auto">
<i class="fas fa-dollar-sign fa-3x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-12 col-lg-7">
<!-- Area Chart -->
<div class="card shadow mb-4 ">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">Area Chart</h6>
</div>
<div class="card-body">
<div class="chart-area">
<canvas id="myAreaChart"></canvas>
</div>
</div><br>
</div>
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<?php
$sqlpricehighter = "SELECT * FROM productsuse where pricesellall > 10000";
$resultpricehighter = mysqli_query($connect, $sqlpricehighter);
mysqli_num_rows($resultpricehighter);
$sqlpricehight = "SELECT * FROM productsuse where pricesellall <= 10000 AND pricesellall >= 7500";
$resultpricehight = mysqli_query($connect, $sqlpricehight);
mysqli_num_rows($resultpricehight);
$sqlpricemidium = "SELECT * FROM productsuse where pricesellall < 7500 AND pricesellall >= 5000";
$resultpricemidium = mysqli_query($connect, $sqlpricemidium);
mysqli_num_rows($resultpricemidium);
$sqlpricelow = "SELECT * FROM productsuse where pricesellall < 5000 AND pricesellall >= 2500";
$resultpricelow = mysqli_query($connect, $sqlpricelow);
mysqli_num_rows($resultpricelow);
$sqlpricelower = "SELECT * FROM productsuse where pricesellall < 2500 AND pricesellall >= 1000";
$resultpricelower = mysqli_query($connect, $sqlpricelower);
mysqli_num_rows($resultpricelower);
$sqlpricelowerthan = "SELECT * FROM productsuse where pricesellall < 1000";
$resultpricelowerthan = mysqli_query($connect, $sqlpricelowerthan);
mysqli_num_rows($resultpricelowerthan);
?>
<input type="text" id="resultpricehighter" value=<?php echo mysqli_num_rows($resultpricehighter) ?> style="display: none;"></input>
<input type="text" id="resultpricehight" value=<?php echo mysqli_num_rows($resultpricehight) ?> style="display: none;"></input>
<input type="text" id="resultpricemidium" value=<?php echo mysqli_num_rows($resultpricemidium) ?> style="display: none;"></input>
<input type="text" id="resultpricelow" value=<?php echo mysqli_num_rows($resultpricelow) ?> style="display: none;"></input>
<input type="text" id="resultpricelower" value=<?php echo mysqli_num_rows($resultpricelower) ?> style="display: none;"></input>
<input type="text" id="resultpricelowerthan" value=<?php echo mysqli_num_rows($resultpricelowerthan) ?> style="display: none;"></input>
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<!-- Modal Profile-->
<div class="modal fade" id="id-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<?php while ($row = mysqli_fetch_assoc($resultimguser)) : ?>
<div class="modal-dialog modal-sm">
<div class="modal-body-id" style="background-image: url('img/<?php echo $row["imageuser"]; ?>')">
</div>
</div>
<?php endwhile ?>
</div>
<style>
#hidden-text {
width: 100%;
width: inherit !important;
/* hack firefox , chrome ,safari*/
overflow: hidden
}
.modal-body {
word-break: break-all;
}
.modal-body-id {
background-repeat: no-repeat;
background-size: cover;
height: 400px;
}
.dropdown-item {
cursor: pointer;
}
.breadcrumb {
margin-bottom: 0px;
background-color: white;
}
.wrapper-range {
height: 75px;
width: 680px;
margin: 0px auto;
background: #fff;
border-radius: 10px;
padding: 0 65px 0 45px;
box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}
.field {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
position: relative;
flex-wrap
}
.field .value {
position: absolute;
font-size: 18px;
color: #045fa4;
font-weight: 600;
}
.field .value.left {
left: -22px;
}
.field .value.right {
right: -43px;
}
.field input {
flex: 1 1 auto;
}
.sliderValue {
position: relative;
width: 100%;
}
.sliderValue span {
position: absolute;
height: 45px;
width: 45px;
transform: translateX(-70%) scale(0);
font-weight: 500;
top: -40px;
line-height: 55px;
z-index: 2;
color: #fff;
transform-origin: bottom;
transition: transform 0.3s ease-in-out;
}
.sliderValue span.show {
transform: translateX(-70%) scale(1);
}
.sliderValue span:after {
position: absolute;
content: '';
height: 100%;
width: 100%;
background: #045fa4;
border: 3px solid #fff;
z-index: -1;
left: 50%;
transform: translateX(-50%) rotate(45deg);
border-bottom-left-radius: 50%;
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
border-top-left-radius: 50%;
border-top-right-radius: 50%;
}
.range input::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
background: red;
border-radius: 50%;
background: #045fa4;
border: 1px solid #045fa4;
cursor: pointer;
}
</style>
<!-- Bootstrap core JavaScript-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for all pages-->
<script src="js/sb-admin-2.min.js"></script>
<!-- Page level plugins -->
<script src="vendor/chart.js/Chart.min.js"></script>
<!-- Page level custom scripts -->
<script src="js/demo/chart-pie-demo.js"></script>
<script src="js/demo/chart-area-demo.js"></script>
<script src="js/demo/chart-bar-demo.js"></script>
<?php mysqli_close($connect) ?>
</body>
</html>