sql >> Base de Datos >  >> RDS >> Mysql

eliminar fila en mi base de datos usando php pdo

Puede usar bindParam o bindValue antes de intentar ejecutar que query.

$command = " DELETE FROM SoccerPoll WHERE Id=:id LIMIT 1";
$stmt = $dbh ->prepare($command);
$stmt->bindParam(':id', $_GET['Id'], PDO::PARAM_INT);
$stmt->execute();