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
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);
?>
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.