This repository has been archived on 2026-05-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-05-13 23:25:30 +08:00

19 lines
359 B
PHP

<?php
$host = "localhost";
$user = "root";
$password = "";
$database = "rebolusyon";
//create connection
$conn = mysqli_connect($host, $user, $password, $database);
//check connection
if($conn->connect_error){
die("Connection failed: ". $conn->connect_error);
}
//echo "Connected successfully";
?>