आपको as
. का उपयोग करके कुल को अन्य नाम देना होगा कीवर्ड को mysql_fetch_assoc
. से कॉल करने के लिए
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];
आपको as
. का उपयोग करके कुल को अन्य नाम देना होगा कीवर्ड को mysql_fetch_assoc
. से कॉल करने के लिए
$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];