ESH/includes/config/dev_dbutil_prefix/config.php

15 lines
236 B
PHP
Raw Normal View History

2024-10-23 18:28:06 +05:30
<?php
// Enter DB
$hostname = "localhost";
$username="root";
$password= "";
$database = "test";
$connect = mysqli_connect($hostname , $username , $password , $database);
if(!$connect){
die("Failed to connect to Database");
}
?>