Mini Kabibi Habibi

Current Path : C:/xampp/htdocs/ict_schedule/
Upload File :
Current File : C:/xampp/htdocs/ict_schedule/completed_activities.php

<div id="completed-activities">
    <h2>Completed Activities</h2>
    <table>
        <thead>
            <tr>
                <th>Name</th>
                <th>Activity</th>
                <th>Location</th>
                <th>Start Date</th>
                <th>End Date</th>
            </tr>
        </thead>
        <tbody>
            <?php foreach ($completedActivities as $activity): ?>
                <tr>
                    <td><?= htmlspecialchars($activity['name']) ?></td>
                    <td><?= htmlspecialchars($activity['activity']) ?></td>
                    <td><?= htmlspecialchars($activity['location']) ?></td>
                    <td><?= htmlspecialchars($activity['start_date']) ?></td>
                    <td><?= htmlspecialchars($activity['end_date']) ?></td>
                </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
</div>