Skip to content

Instantly share code, notes, and snippets.

View BretMishler's full-sized avatar

Bret BretMishler

  • Google
  • California
View GitHub Profile
@BretMishler
BretMishler / db-connect-test.php
Last active May 19, 2016 16:59 — forked from chales/db-connect-test.php
Script for a quick PHP MySQL DB connection test.
<?php
# Fill our vars and run on cli
# $ php -f db-connect-test.php
$dbname = 'name';
$dbuser = 'user';
$dbpass = 'pass';
$dbhost = 'host';
$connect = mysqli_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'");