9 lines
No EOL
187 B
PHP
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);
|
|
}
|
|
?>
|