Bạn có thể sử dụng bindParam hoặc bindValue trước khi cố gắng thực thi truy vấn que.
$command = " DELETE FROM SoccerPoll WHERE Id=:id LIMIT 1";
$stmt = $dbh ->prepare($command);
$stmt->bindParam(':id', $_GET['Id'], PDO::PARAM_INT);
$stmt->execute();