Jump to content

Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean g


jose

Recommended Posts

Any suggestion indicating the solution of this problem? Appreciate, thanks

 

<?php
  
  require_once('connectvars.php');



  // Connect to the database 
  $dbc = mysqli_connect(localhost, root, zam, entrepreneur); 

  // Retrieve the user data from MySQL
  $query = "SELECT user_id, first_name, FROM user WHERE first_name IS NOT NULL ORDER DESC LIMIT 5";
  $data = mysqli_query($dbc, $query);

  // Loop through the array of user data, formatting it as HTML
  echo '<h4>Latest members:</h4>';
  echo '<table>';
  while ($row = mysqli_fetch_array($data)) {
   
    if (isset($_SESSION['user_id'])) {
      echo '<td><a href="viewprofile.php?user_id=' . $row['user_id'] . '">' . $row['first_name'] . '</a></td></tr>';
    }
    else {
      echo '<td>' . $row['first_name'] . '</td></tr>';
    }
  }
  echo '</table>';

  mysqli_close($dbc);
?>

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.