Initial commit
This commit is contained in:
+18
@@ -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";
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user