U moet het aggregaat een alias geven met de as
zoekwoord om het te bellen vanuit mysql_fetch_assoc
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];
U moet het aggregaat een alias geven met de as
zoekwoord om het te bellen vanuit mysql_fetch_assoc
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];