mysqli_query
आपको एक mysqli_result
लौटाता है वस्तु
. वहां से, आप मनचाहा मूल्य प्राप्त कर सकते हैं।
if($query_run = mysqli_query($link, $query)) {
// This gets you one row at a time, use a while if there are multiple rows
// while($row = mysqli_fetch_assoc($query_run)){}
$row = mysqli_fetch_assoc($query_run);
$count = $row['count'];
// Do whatever with $count
}