Files
intaleq_v3_pure_php/Admin/debug/check_users_cols.php
Hamza-Ayed e999cd4ffa admin 12
2026-04-30 18:23:29 +03:00

12 lines
236 B
PHP

<?php
require_once 'connect.php';
try {
$stmt = $con->query("DESCRIBE users");
$cols = $stmt->fetchAll(PDO::FETCH_ASSOC);
echo json_encode($cols, JSON_PRETTY_PRINT);
} catch (Exception $e) {
echo $e->getMessage();
}
?>