add files
This commit is contained in:
28
drop_tables.php
Normal file
28
drop_tables.php
Normal 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);
|
||||
|
Reference in New Issue
Block a user