Stand 17.02.2023

This commit is contained in:
aschwarz
2023-03-17 12:54:16 +01:00
parent 247a3da3ea
commit f0a0848c5d
24 changed files with 1487 additions and 1691 deletions

14
admin/#config.php Normal file
View File

@ -0,0 +1,14 @@
<?php
#error_reporting(0);
define('DB_NAME', 'survey');
define('DB_USER', 'root');
define('DB_PASSWORD', '');
define('DB_HOST', 'localhost');
// Create connection
$db = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
// Check connection
if ($db->connect_error) {
die("Connection failed: " . $db->connect_error);
}
?>