17 lines
408 B
PHP
17 lines
408 B
PHP
<?php
|
|
require_once 'db/config.php';
|
|
$db = db();
|
|
|
|
$tables = ['laboratory_tests', 'xray_tests', 'drugs'];
|
|
|
|
foreach ($tables as $table) {
|
|
try {
|
|
$stmt = $db->query("SHOW CREATE TABLE $table");
|
|
$row = $stmt->fetch(PDO::FETCH_ASSOC);
|
|
echo $row['Create Table'] . "\n\n";
|
|
} catch (Exception $e) {
|
|
echo "Table $table not found or error: " . $e->getMessage() . "\n\n";
|
|
}
|
|
}
|
|
|