Bonjour à tous

j'aimerai afficher un résultat de ma bdd mais cela ne fonctionne pas pouvez vous m'aider

voici mon code

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 
 
$conn = mysqli_connect('localhost', 'root', '****', '****');
//modification des caractères avec accents
mysqli_query($conn,"SET CHARACTER SET 'utf8'");
mysqli_query($conn,"SET SESSION collation_connection ='utf8_unicode_ci'");
 
//echo '<font color="white">c\'est ok</font>';
$select = '	SELECT * FROM anomalies';
$result = $conn->query($select);
$total = mysqli_num_rows($result);	
echo $total['ano'];
Merci à vous