-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsvdown2.php
More file actions
183 lines (139 loc) · 5.68 KB
/
Copy pathcsvdown2.php
File metadata and controls
183 lines (139 loc) · 5.68 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
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
<?php
if (isset($_COOKIE["logged_in"])) {
$isSuperAdmin = $_COOKIE["logged_in"];
}
if (!(isset($_COOKIE["logged_in"]))) {
header("Location:index.php");
}
if (isset($_GET['logout'])) {
setcookie("logged_in", '', time() - (86400 * 30), "/");
header("Location:index.php");
}
$file = fopen('php://memory', "w");
$arr = array();
include('includes/database.php');
////echo date('Y-m-d', strtotime("last day of -1 month"));
if ($_GET) {
if (isset($_GET['mm'])) {
$get_value = $_GET['month'];
date_default_timezone_set('Asia/Kolkata');
$mon = substr($get_value, 0, 2); // month selected
$yr = substr($get_value, 3, 4); // year selected
$monthNum = $mon;
$monthName = date('M', mktime(0, 0, 0, $monthNum, 10)); // March
$fileName = "Employee attd ".$monthName." ".$yr.".csv";
array_push($arr, "I.D.", "NAME");
$curmonth = date('m');
$a_date = "$yr-$mon-01";
$totalDays = date("t", strtotime($a_date));
for ($i = 1; $i <= $totalDays; $i++) {
//echo "<th>$i</th>";
array_push($arr, $i);
}
//echo "<th>Total Working Hours</th>";
//echo "<th>Total Days Present</th>";
array_push($arr, "TOTAL WORKING HOURS");
array_push($arr, "TOTAL DAYS PRESENT");
fputcsv($file, $arr);
$arr = array();
fputcsv($file, $arr);
$query = "SELECT details.id, fname, lname, check_in,DAY(check_in) ,check_out, TIME_FORMAT(attendance.check_in, '%H:%i'), TIME_FORMAT(attendance.check_out, '%H:%i') FROM details, attendance
WHERE details.id = attendance.id AND attendance.id IS NOT NULL AND MONTH(check_in) = '$mon' AND YEAR(check_in) = '$yr' ORDER BY id, check_in";
$result = $mysqli->query($query) or die($mysqli->error . " " . __LINE__); //__LINE__ shows the line no. we are getting the error at
$i = 1;
if (mysqli_num_rows($result) == 0) {
$arr = array("No records Found");
fputcsv($file, $arr);
array_to_csv_download($file, $fileName);
exit(0);
}
while ($row = mysqli_fetch_array($result)) {
$date = $row["DAY(check_in)"];
if ($i == 1) {
//echo "<tr><td> $row[id]</td><td> $row[fname] $row[lname] </td>";
array_push($arr, $row['id'], $row['fname'] . " " . $row['lname']);
$name = $row['fname'];
$workingmins = 0;
$daysPresent = 0;
$mins = 0;
} else if ($name != $row['fname']) {
if (date("m") == $mon) {
while ($i <= $totalDays) {
if ($i <= date("d")) {
array_push($arr, "AB");
} else array_push($arr, "-");;
$i++;
}
} else {
while ($i <= $totalDays) {
array_push($arr, "AB");
$i++;
}
}
$hrs = floor($workingmins / 60);
$mins = $workingmins % 60;
array_push($arr, "$hrs hrs $mins mins");
array_push($arr, $daysPresent);
fputcsv($file, $arr);
$arr = array();
array_push($arr, $row['id'], $row['fname'] . " " . $row['lname']);
$name = $row['fname'];
$i = 1;
$workingmins = 0;
$mins = 0;
$daysPresent = 0;
}
if ($row['check_out'] != null) {
$to_time = strtotime($row['check_out']);
$from_time = strtotime($row['check_in']);
$total_mins = ceil(abs($to_time - $from_time) / 60);
$workingmins += $total_mins;
}
$daysPresent += 1;
while ($i < $date) {
//echo "<td>AB</td>";
array_push($arr, "AB");
$i++;
}
//echo "<td>";
//echo $row["TIME_FORMAT(attendance.check_in, '%H:%i')"] . " - " . $row["TIME_FORMAT(attendance.check_out, '%H:%i')"];
//echo "</td>";
array_push($arr, $row["TIME_FORMAT(attendance.check_in, '%H:%i')"] . " - " . $row["TIME_FORMAT(attendance.check_out, '%H:%i')"]);
$i++;
}
if (date("m") == $mon) {
while ($i <= $totalDays) {
if ($i <= date("d")) {
array_push($arr, "AB");
} else array_push($arr, "-");;
$i++;
}
} else {
while ($i <= $totalDays) {
array_push($arr, "AB");
$i++;
}
}
$hrs = floor($workingmins / 60);
$mins = $workingmins % 60;
array_push($arr,"$hrs hrs $mins mins");
array_push($arr, $daysPresent);
fputcsv($file, $arr);
$arr = array();
//echo "</table>";
}
}
//fclose($file);
array_to_csv_download($file, $fileName);
function array_to_csv_download($file, $filename = "export.csv", $delimiter = ";")
{
// reset the file pointer to the start of the file
fseek($file, 0);
// tell the browser it's going to be a csv file
header('Content-Type: application/csv');
// tell the browser we want to save it instead of displaying it
header('Content-Disposition: attachment; filename="' . $filename . '";');
// make php send the generated csv lines to the browser
fpassthru($file);
}
?>