12 lines
266 B
PHP
12 lines
266 B
PHP
<?php
|
|
require_once __DIR__ . '/db/config.php';
|
|
|
|
try {
|
|
$stmt = db()->query("SHOW COLUMNS FROM shipments LIKE 'status'");
|
|
$row = $stmt->fetch();
|
|
echo "Type: " . $row['Type'] . "\n";
|
|
} catch (Throwable $e) {
|
|
echo "Error: " . $e->getMessage() . "\n";
|
|
}
|
|
|