first
This commit is contained in:
14
legacy_source/db.php
Normal file
14
legacy_source/db.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$host = "localhost";
|
||||
$user = "root";
|
||||
$pass = "";
|
||||
$db = "db_cobol";
|
||||
|
||||
$conn = mysqli_connect($host,$user,$pass,$db);
|
||||
|
||||
if(!$conn){
|
||||
die("Connection failed : " . mysqli_connect_error());
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user