This commit is contained in:
Saufi
2026-05-26 10:25:37 +08:00
commit 0c0cef7387
85 changed files with 15340 additions and 0 deletions

14
legacy_source/db.php Normal file
View 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());
}
?>