Accanto al '
mancante
Puoi eseguire le modifiche direttamente nella query:
UPDATE `events`
SET `free_spots` = `free_spots`-1,
`full_spots` = `full_spots`+1
WHERE `event_id` = :event_id
Devi anche associare :event_id placeholder$update_event_query_do->bindParam(':event_id', $event_id, PDO::PARAM_INT);