first commit

This commit is contained in:
2025-01-10 15:20:33 +08:00
commit 4f5d2aa650
66 changed files with 15921 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "IMAS";
// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);