1
0
mirror of https://github.com/gamaio/lobli.git synced 2024-12-23 12:12:40 +00:00
lobli/Website/Include/PHP/db.php
alopexc0de 2692bdf753 Moved from windows to linux - Git is acting weird
The files changed totally apparently, even though no actual changes were made
2014-07-04 17:28:17 -04:00

4 lines
240 B
PHP

<?php
$shortdb = new mysqli('localhost', 'short', 'password', 'short'); // Connect to link shortener DB
if($shortdb->connect_errno > 0) die('Unable to connect to database [' . $shortdb->connect_error . '] - Check dbsettings.php');
?>