Initial commit

This commit is contained in:
2025-01-07 17:55:50 +08:00
commit eab1d70061
86 changed files with 2772 additions and 0 deletions

28
20241208/drop_tables.php Normal file
View File

@ -0,0 +1,28 @@
<?php
include_once("db_config.php");
$conn = $link;
$sql = "DROP TABLE IF EXISTS `user_70`;";
$result = mysqli_query($conn, $sql);
if ($result) {
echo "Table users dropped successfully.";
} else {
echo "Error dropping table: " . mysqli_error($conn);
}
$sql = "DROP TABLE IF EXISTS `nucleic_acid_test_2`;";
$result = mysqli_query($conn, $sql);
if ($result) {
echo "Table users dropped successfully.";
} else {
echo "Error dropping table: " . mysqli_error($conn);
}
$sql = "DROP TABLE IF EXISTS `patient_90`;";
$result = mysqli_query($conn, $sql);
if ($result) {
echo "Table users dropped successfully.";
} else {
echo "Error dropping table: " . mysqli_error($conn);
}
mysqli_close($conn);