0) {
// Output table header with CSS styles
echo "
";
echo "| Attendance for: $enrollment_no |
";
echo "| Course ID | Current Attendance | Total Sessions | Progress |
";
echo "Subject-wise Attendance
";
//Attendance Trends & Attendance Alerts
// Loop through each row of the result set
while ($row = mysqli_fetch_assoc($result)) {
// Calculate progress ratio
$progress_ratio = ($row['curr_attendance'] / $row['total_session']) * 100;
// Output table row
echo "";
echo "| " . $row['course_id'] . " | ";
echo "" . $row['curr_attendance'] . " | ";
echo "" . $row['total_session'] . " | ";
// Output progress bar with padding
echo " | ";
echo "
";
}
echo "
";
} else {
// No records found
echo "No records found";
}
// Free result set
mysqli_free_result($result);
/*} else {
echo "Enrollment number not provided"; // Output message if enrollment number is not provided in the GET request
}*/
// Close connection
mysqli_close($con);
}
?>