I\'m writing an installer script and I need to check if the user entered correct database information and therefore need to check if mysqli_connect was successful or not. A simp
Like so:
if( ! $db = mysqli_connect(...) ) { die('No connection: ' . mysqli_connect_error()); }