website/public/API/lib/mysql.php
2021-04-13 10:47:34 +02:00

8 lines
219 B
PHP

<?php
$conn = new mysqli($mysqlServer, $mysqlUser, $mysqlPassword, $mysqlDatabase);
// Check connection
if ($conn->connect_error) {
header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
}