jasan/check_schema_dept.php
2026-02-08 17:12:56 +09:00

9 lines
No EOL
187 B
PHP

<?php
require_once 'config.php';
$table = 'departments';
echo "--- Table: $table ---\n";
$q = $db->query("PRAGMA table_info($table)");
while ($row = $q->fetch()) {
print_r($row);
}
?>