Bạn cần đặt bí danh cho tổng hợp bằng cách sử dụng as
từ khóa để gọi nó từ mysql_fetch_assoc
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];
Bạn cần đặt bí danh cho tổng hợp bằng cách sử dụng as
từ khóa để gọi nó từ mysql_fetch_assoc
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];