Clean up :3

This commit is contained in:
Michał Gdula 2022-07-23 08:44:43 +01:00
parent 697e41e913
commit acde68ac74
13 changed files with 85 additions and 79 deletions

8
ui/conn.php Normal file
View file

@ -0,0 +1,8 @@
<?php
// Attempt database connection
$conn = mysqli_connect("localhost", "uwu", "password", "swag");
// If connecton failed, notify user
if (!$conn) {
echo "<p class='alert alert-low'>Could not connect to database</p>";
}
?>