0

maybe you can enlighten me. Is there a good explanation why the mysqli object returns false if it did work and true if it didn't?

Code:

$connection= @new mysqli($ip, $user, $password);

if (!$connection)
{
    $connection->select_db($db);
    $connection->set_charset("utf8");
}

Why is this correct and not if ($connection)?

CodeShark
  • 1,709
  • 2
  • 14
  • 22

0 Answers0