mirror of
https://github.com/gamaio/lobli.git
synced 2024-12-23 12:12:40 +00:00
f0f858950d
Since I will be using Redis from multiple files, the connection to the server should be in the same file as the other DB connection. This icon looks a little bit better I think.
8 lines
306 B
PHP
8 lines
306 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');
|
|
|
|
$redis = new Redis();
|
|
$redis->connect('127.0.0.1', 6379);
|
|
?>
|