This commit is contained in:
lizandrogd
2026-01-21 02:45:59 -05:00
parent edfa5f68d9
commit 845762f916
10 changed files with 207 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
try {
$cols = $db->fetchAll('DESCRIBE message_templates');
foreach ($cols as $c) echo $c['Field'] . ' => ' . $c['Type'] . PHP_EOL;
} catch (Exception $e) {
echo 'Error: ' . $e->getMessage() . PHP_EOL;
}