34950-vm/describe_table.php
Flatlogic Bot 9a7532b7f7 latest
2025-10-17 09:40:58 +00:00

9 lines
206 B
PHP

<?php
require_once 'db/config.php';
try {
$stmt = db()->query('DESCRIBE attendees');
print_r($stmt->fetchAll(PDO::FETCH_ASSOC));
} catch (PDOException $e) {
echo 'Error: ' . $e->getMessage();
}