简体   繁体   中英

Counting specific records MySQL

I want to show the count of users which have the status 1 (see code) within PHP MySQL.

<?php
// something like this
$result = mysqli_query($mysqli, "SELECT COUNT(*) FROM users WHERE status = '1'");
echo "$result";
?>

Try this:

$query = "SELECT COUNT(*) as countvar FROM users where status = '1'";

$result = mysqli_query($con,$query);

$row = mysqli_fetch_array($result);

$count= $row['countvar '];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM