Skip to content

Instantly share code, notes, and snippets.

@enopanen
Created December 8, 2013 01:21
Show Gist options
  • Save enopanen/7852226 to your computer and use it in GitHub Desktop.
Save enopanen/7852226 to your computer and use it in GitHub Desktop.
MySQLi Connect Example
$mysqli = new mysqli('localhost', 'my_user', 'my_password', 'my_db');
if ($mysqli->connect_error) {
die('Connect Error (' . $mysqli->connect_errno . ') '
. $mysqli->connect_error);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment