Vous pouvez utiliser bindParam ou bindValue avant d'essayer d'exécuter une requête.
$command = " DELETE FROM SoccerPoll WHERE Id=:id LIMIT 1";
$stmt = $dbh ->prepare($command);
$stmt->bindParam(':id', $_GET['Id'], PDO::PARAM_INT);
$stmt->execute();
Vous pouvez utiliser bindParam ou bindValue avant d'essayer d'exécuter une requête.
$command = " DELETE FROM SoccerPoll WHERE Id=:id LIMIT 1";
$stmt = $dbh ->prepare($command);
$stmt->bindParam(':id', $_GET['Id'], PDO::PARAM_INT);
$stmt->execute();
Comment obtenir les valeurs Max et Min d'une table à l'aide de la fonction d'agrégation - Tutoriel SQL Server / TSQL Partie 129
Types de données VARCHAR et NVARCHAR dans SQL Server
Comment concevoir un modèle de base de données pour un système de réservation de salle de cinéma
Comment remplacer un maître MySQL ou MariaDB intermédiaire par un serveur Binlog à l'aide de MaxScale