17 lines
442 B
PHP
17 lines
442 B
PHP
<?php
|
|
require_once 'db/config.php';
|
|
$db = db();
|
|
|
|
$tables = ['xray_inquiry_items', 'inquiry_tests', 'visit_prescriptions', 'laboratory_inquiries'];
|
|
|
|
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: " . $e->getMessage() . "\n\n";
|
|
}
|
|
}
|
|
|