<?php
$likeCount =
$currentId =
$sql = "UPDATE idee SET likes=? WHERE id=?";
$stmt = $db->prepare($sql);
$stmt->execute($likeCount, $currentId);
?>