Feature added location to calendar events and created new tab called details in calendar events for description and location

This commit is contained in:
johnnyq
2024-03-23 16:43:42 -04:00
parent 5ebc6ffde8
commit 1792aaee64
6 changed files with 40 additions and 10 deletions

View File

@@ -34,6 +34,7 @@ while ($row = mysqli_fetch_array($sql)) {
$event_id = intval($row['event_id']);
$event_title = nullable_htmlentities($row['event_title']);
$event_description = nullable_htmlentities($row['event_description']);
$event_location = nullable_htmlentities($row['event_location']);
$event_start = nullable_htmlentities($row['event_start']);
$event_end = nullable_htmlentities($row['event_end']);
$event_repeat = nullable_htmlentities($row['event_repeat']);