Je vous mets mon code:
<?php
$res = $bdd->query('SELECT COUNT(*) AS nb_banderoles FROM matchs_banderoles');
$res1 = $bdd->query('SELECT COUNT (*) AS nb_salle FROM matchs_salle');
$row1 = $res1->fetch();
$row = $res->fetch();
echo 'total d\'inscrits banderoles = ' . $row['nb_banderoles'];
echo '<br>total d\'inscrits salles = ' . $row1['nb_salles'];
?>
Et en fait, cela me renvoie: Fatal error: Call to a member function fetch() on a non-object in /homepages/3/d164172272/htdocs/d.php on line 5