-
Notifications
You must be signed in to change notification settings - Fork 0
/
leavereporthr.php
115 lines (93 loc) · 3.29 KB
/
leavereporthr.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
<?php
include 'conn.php';
$sql1 = "SELECT * FROM leaveinfo";
$sql2 = "SELECT * FROM employee_details";
$result1 = mysqli_query($con,$sql1);
$result2= mysqli_query($con,$sql2);
?>
<!DOCTYPE html>
<html>
<head>
<title>Leave report</title>
<style>
p.double {border-style: double;
background-color: #030d7a;
padding: 3px;}
p.groove {border-style: groove;}
a:link, a:visited {
background-color: #02023a;
color: white;
padding: 14px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size:20px;
}
a:hover, a:active {
background-color: red;
}
</style>
</head>
<body style=" background-image: url(leave.jpg);background-size: cover;">
<h2 style="color:black;font-size:40px;padding:5px;background-color:#1b97fd;text-align: center;">LEAVE REPORT</h2>
<a href="homepagehr.php" target="_blank">HOME</a>
<table style="border-top-style: dotted;
border-right-style: solid;
border-bottom-style: dotted;
border-left-style: solid;
border-width: 80%;
padding:5px;
background-color:white;"><p class="double" >
<thead>
<tr style="color:red;font-size:25px;padding:5px;">
<th>Employee ID | </th>
<th> Department ID | </th>
<th> Full Name</th>
<th> Leave type | </th>
<th> From |</th>
<th> To |</th>
<th> Leave duration |</th>
<th> Remaining
leave days|</th>
<th> Reason |</th>
<th> HR Response|</th>
<th> Edit </th>
</tr>
</thead>
<tbody>
<?php
// Loop through data and display in table rows
if (mysqli_num_rows($result1) > 0) {
while ($row1 = mysqli_fetch_assoc($result1)) {
$row2 = mysqli_fetch_assoc($result2);
echo "<tr>";
echo "<td>" . ($row2['employee_id'] ?? ""). "</td>";
echo "<td>" . ($row2['department_id']?? "" ). "</td>";
echo "<td>" . ($row2['fulname']?? "" ). "</td> ";
echo "<td>" . ($row1['leavetype'] ?? ""). "</td>";
echo "<td>" . ($row1['datefrom'] ?? ""). "</td>";
echo "<td>" . ($row1['dateto']?? "" ). "</td>";
echo "<td>" . ($row1['leaveduration']?? "" ). "</td>";
echo "<td>" . ($row1['remainingleavedays']?? "" ). "</td>";
echo "<td>" . ($row1['reason'] ?? "") . "</td>";
echo "<td>" . ($row1['hr_response'] ?? "") . "</td>";
echo "<td>";
echo "<form method='post' action='update_leave.php'>"; // form for updating employee details
echo "<input type='hidden' name='employee_id' value='" . ($row1['employee_id'] ?? "") . "' />"; // hidden input field for employee ID
echo "<input type='submit' name='update' value='Update' />"; // submit button for updating employee details
echo "</form>";
echo "</td>";
echo "</tr>";
}
} else {
echo "<tr><td colspan='6'>No data found</td></tr>";
}
?>
</tbody>
</p></table>
</body>
</html>
<?php
// Close database connection
mysqli_close($con);
?>