tech4biz/admin/db/config.php
2024-10-24 17:20:08 +05:30

31 lines
674 B
PHP

<?PHP
error_reporting(E_ALL);
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
// $host = "localhost";
// $user = "root";
// $database = "tech4biz";
// $password = "";
// $host = "localhost";
// $user = "root";
// $password = "123456(Tech";
// $database = "tech4biz";
$host = "localhost";
$user = "vishwart_tech4biz";
$password = "Newpassword02#";
$database = "vishwart_tech4biz";
$BASE_URL = "https://www.tech4bizsolutions.com";
$connection = new mysqli($host, $user, $password, $database);
if ($connection->connect_error) {
die("Failed to Connect with Database<br/>" . mysqli_connect_error() . mysqli_connect_errno());
}