Salut !!
Select Count(*) from nomTable ça marche mais après ce qui est chiant c de récupérer cette donnée (fetch...)
Voilà une formulation qui fonctionne :
[code]
$req = mysql_query("SELECT COUNT(*) as cpt FROM table WHERE ...);
$row = mysql_fetch_array($req);
$nb = $row['cpt'];
[/code]
Mementox