12 lines
268 B
PHP
12 lines
268 B
PHP
<?php
|
|
include 'db.php';
|
|
header('Content-Type: application/json');
|
|
|
|
$result = $conn->query("SELECT * FROM parsil");
|
|
$data = [];
|
|
while ($row = $result->fetch_assoc()) {
|
|
$row['geometry'] = json_decode($row['geometry']);
|
|
$data[] = $row;
|
|
}
|
|
echo json_encode($data);
|