mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-01 12:26:00 +00:00
9 lines
242 B
PHP
9 lines
242 B
PHP
<?php
|
|
// Attempt database connection
|
|
$conn = mysqli_connect("localhost", "uwu", "fennec621", "swag");
|
|
// If connecton failed, notify user
|
|
if ($conn->connect_error) {
|
|
echo "<p class='alert alert-low'>Could not connect to database</p>";
|
|
}
|
|
?>
|