Musisz aliasować agregat za pomocą as
słowo kluczowe, aby wywołać je z mysql_fetch_assoc
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];
Musisz aliasować agregat za pomocą as
słowo kluczowe, aby wywołać je z mysql_fetch_assoc
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];