ESH/dbconnection.php
2024-10-23 18:28:06 +05:30

14 lines
399 B
PHP

<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
$dbUser = "root";
$dbPass = "";
$dbDatabase = "railtech_db";
$dbHost = 'localhost';
$conn = mysqli_connect($dbHost, $dbUser, $dbPass, $dbDatabase) or die("Failed to connect:" . mysqli_connect_error());
?>