14 lines
399 B
PHP
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());
|
|
?>
|