31 lines
674 B
PHP
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());
|
|
} |