Add initial implementation of Schoolkantine project with configuration, order handling, and styling

This commit is contained in:
vista-man
2025-03-07 02:04:48 +01:00
parent 470ba84655
commit 86921596fc
94 changed files with 1349 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
$servername = "localhost:3306";
$username = "database";
$password = "13cAv?i52";
$dbname = "schoolkantine";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>