Jump to content

Counting rows Mysqli


cobusbo

Recommended Posts

Hi I'm using php file to retrieve the amount of records in my database, but all of a sudden I get 0 results. It worked fine a few days ago. I got PHP 5.2.* on my host. Here is the current script that I use.

Did I made a mistake somewhere?

<?php
$con=mysqli_connect("******","*****","*****","****");

// Check connection
if (mysqli_connect_errno()) {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$sql="SELECT * FROM mxit";

if ($result=mysqli_query($con,$sql))
  {
 

$rowcount=mysqli_num_rows($result);
  //printf("Result set has %d rows.\n",$rowcount);

    
  // Free result set
  mysqli_free_result($result);
}

mysqli_close($con);
?>
Link to comment
https://forums.phpfreaks.com/topic/292930-counting-rows-mysqli/
Share on other sites

other than you had it commented out and no db credentials, looks ok

<?php
$con=mysqli_connect("******","*****","*****","****");
// Check connection
if (mysqli_connect_errno()) {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$sql="SELECT * FROM mxit";
if ($result=mysqli_query($con,$sql))
  {
$rowcount=mysqli_num_rows($result);
  echo "Result set has $rowcount rows. <br />"; //because I like this way better
  
  // Free result set
  mysqli_free_result($result);
}
mysqli_close($con);
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.