“MySQL Count Zeilen PHP” Code-Antworten

PHP Mysql zählen Zeilen

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

MySQL Count Zeilen 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 Holen Sie sich die Anzahl der Zeilen PHP

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

Ähnliche Antworten wie “MySQL Count Zeilen PHP”

Fragen ähnlich wie “MySQL Count Zeilen PHP”

Weitere verwandte Antworten zu “MySQL Count Zeilen PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen