Initial commit

This commit is contained in:
2026-05-13 23:25:30 +08:00
commit ef6961ba5a
105 changed files with 69505 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?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";
?>