pivi_vault_system/api/city/index.php

12 lines
281 B
PHP
Raw Normal View History

2024-02-28 15:55:13 +08:00
<?php
include_once '../../editor/lib/DataTables.php';
$city = $db
->select( 'city', ['id as value', 'name as label'], ['pid' => $_REQUEST['values']['documents.province']] )
->fetchAll();
echo json_encode( [
'options' => [
'documents.city' => $city
]
] );