OpenMediaCenter/php/sqlinit.php
lukas 4ad29fd072 lots of improvements:
hover animation
correct jumpback position after video view
load when scroll - not all at beginning
2020-05-18 22:55:26 +02:00

12 lines
290 B
PHP
Executable File

<?php
$server = "172.17.0.2";
$user = "mwit";
$password = "3MnDApF3bu6XDGOE";
$database = "mwitdb";
$mysqli = new mysqli($server, $user, $password, $database);
if ($mysqli->connect_errno) {
echo "connecton failed... nr: " . $mysqli->connect_errno . " -- " . $mysqli->connect_error;
}