-
Notifications
You must be signed in to change notification settings - Fork 6
/
holiday_count.php
57 lines (52 loc) · 2.06 KB
/
holiday_count.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
<?php
include_once 'header_h.php';
?>
<?php
include_once 'roles.php';
?>
<form action="#" method="post" id="department_count">
<section class="content">
<div class="container-fluid">
<div class="block-header">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="header">
<center>
<?php
include_once 'config/config.php';
$q = "SELECT * FROM holidays";
$cnt = 0;
$status = mysqli_query($connection_obj, $q);
if ($status) {
while ($row = mysqli_fetch_assoc($status)) {
$cnt++;
}
}
?>
<div>
<h1>
<b><u><font face="Arial" color="red">Holiday added successfully.</font></b></u>
</h1>
<br> <br> <br> <br>
</div>
<div>
<h1>
<b><u><font face="Arial" color="green">Holidays added till now are <?php echo $cnt; ?>.</font></b></u>
</h1>
<br> <br> <br> <br> <br> <br> <br> <br> <br>
</div>
</div>
</div>
</div>
</div>
</div>
<center>
<a href="<?= ADMIN_URL ?>dashbord.php">
<input class="btn btn-primary waves-effect" name="close" type="button" value="CLOSE">
</a>
</center>
</section>
</form>
<?php
include_once 'footer_h.php';
?>