लापता '
. के पास
आप सीधे क्वेरी में परिवर्तन निष्पादित कर सकते हैं:
UPDATE `events`
SET `free_spots` = `free_spots`-1,
`full_spots` = `full_spots`+1
WHERE `event_id` = :event_id
आपको :event_id प्लेसहोल्डर$update_event_query_do->bindParam(':event_id', $event_id, PDO::PARAM_INT);
को भी बाइंड करना होगा।