WebDevCF2m2021 / PDOexe2

PDOexe2
1 stars 18 forks source link

Branche de travail ven18 fev2022e #43

Closed thomas-ayissi closed 2 years ago

mikhawa commented 2 years ago

Requête préparée souhaitée `function thesectionSelectOneById(PDO $db, int $id) { try { $sth = $db->prepare("SELECT * FROM thesection WHERE idsection = ?"); $sth->execute([$id]); return $result = $sth->fetch(PDO::FETCH_ASSOC); } catch (Exception $e) { return []; }

}`