This commit is contained in:
2026-06-07 21:22:22 +07:00
parent a70150e088
commit bde929158b
12 changed files with 328 additions and 96 deletions
+5
View File
@@ -0,0 +1,5 @@
<?php
require 'db_config.php';
$res = $conn->query('DESCRIBE jalan');
while($row = $res->fetch_assoc()) echo json_encode($row)."\n";
?>