1
0
mirror of https://github.com/gamaio/lobli.git synced 2025-01-10 18:52:48 +00:00

8 lines
306 B
PHP
Raw Normal View History

<?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');
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
?>