This repository has been archived on 2025-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
inkletblot-com-v1/php gallery/connect.php
2019-12-02 12:10:45 +10:30

16 lines
313 B
PHP

<?php
session_start();
//connect.php
$server = 'localhost';
$username = 'root';
$password = 'Solomon123';
$db = 'gallery';
// Create connection
$conn = new mysqli($server, $username, $password, $db);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>