mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-07 15:26:00 +00:00
18 lines
669 B
PHP
18 lines
669 B
PHP
<?php
|
|
/*
|
|
Connect to database
|
|
|
|
In the future I want this section to be configurable, but that'll require some work to be done.
|
|
For now it's hard-coded, shouldn't be an issue as most people wont be changing this often anyway
|
|
*/
|
|
// Setting up connection variables
|
|
$conn_ip = "192.168.0.79:3306";
|
|
$conn_username = "uwu";
|
|
$conn_password = "fennec621";
|
|
$conn_database = "gallery";
|
|
|
|
$conn = mysqli_connect($conn_ip, $conn_username, $conn_password , $conn_database);
|
|
if ($conn->connect_error) {
|
|
echo "<script>sniffleAdd('Error','Could not make a connection to the server, please try again later','var(--red)','".$root_dir."../../assets/icons/warning.svg')</script>";
|
|
}
|