Skip to content

Instantly share code, notes, and snippets.

View lubry's full-sized avatar
💭
I may be slow to respond.

Lubriady Oktana lubry

💭
I may be slow to respond.
View GitHub Profile
@lubry
lubry / db-connect-test.php
Created January 14, 2019 17:40 — 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 = mysql_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'");