Select Git revision
mysql.php
mysql.php 199 B
<?php
include "config.php";
$conn = new mysqli($mysqlServer, $mysqlUser, $mysqlPassword, $mysqlDatabase);
// Check connection
if ($conn->connect_error) {
die("Connection to database failed");
}