“MySQL Count Rows PHP” Kode Jawaban

PHP MySQL Count Rows

$q="select * from location where community='Zoo' AND status='1'";
$res=mysqli_query($con,$q);
echo mysqli_num_rows($res);
Victorious Vendace

MySQL Count Rows PHP

<?php
$con = mysqli_connect("localhost","root","","test");
if (!$con) 
{
  die('Could not connect: ' . mysqli_error());
}

$result = mysqli_query("select COUNT(*) FROM table");
$row = mysqli_fetch_array($result);

$total = $row[0];
echo "Total rows: " . $total;

mysqli_close($con);
?>
Chandan

mysql dapatkan jumlah baris php

$count_query = "select count(*) from users";
Rht

Jawaban yang mirip dengan “MySQL Count Rows PHP”

Pertanyaan yang mirip dengan “MySQL Count Rows PHP”

Lebih banyak jawaban terkait untuk “MySQL Count Rows PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya