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

@@ -1,6 +1,7 @@
<?php
$calendar_id = intval($_POST['calendar']);
$title = sanitizeInput($_POST['title']);
$location = sanitizeInput($_POST['location']);
$description = sanitizeInput($_POST['description']);
$start = sanitizeInput($_POST['start']);
$end = sanitizeInput($_POST['end']);