Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Mysqli error

Featured Replies

for the code below i am getting this error

 

Warning: mysqli_error() expects parameter 1 to be mysqli, boolean given

 

thanks in advance :)

 

<?php
class mysql{
private $connection = '';
private $error = '';
private $query = '';

function connect($host,$user,$pass,$db){
if(!$this->connection = mysqli_connect($host,$user,$pass,$db)){
$this->error = mysqli_error($this->connection);
return false;
}
}

function fetchRows($result){

$this->query = mysqli_fetch_array($result);

return $result;

}

function doQuery($result){
 $this->query = mysqli_query($result,$this->connection);
 if(!$this->query){
   $this->error = mysqli_error($this->connection);
   return false;
 }
 return $result;
}


}



?>

If it's the first mysql_error() in the connection part that's causing this then it's pretty simple, mysqli_error() is NOT used for debugging connection issues, therefore when the connection isn't made, you pass FALSE to mysqli_error()

  • Author

If it's the first mysql_error() in the connection part that's causing this then it's pretty simple, mysqli_error() is NOT used for debugging connection issues, therefore when the connection isn't made, you pass FALSE to mysqli_error()

 

How can i fix this :)

Save your own error to $this->error instead of trying to get mysqli to do one

My only question is why create a class for this when mysqli is already a mysql object?

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.