You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
123456789101112131415 |
- <?php
- $sql = "select ID,AREA_NAME from base_area where PARENT_ID = '0'";
- $result=$pdo->query($sql);
- $province = $result->fetchAll(PDO::FETCH_ASSOC);
-
- $code = 0;
- $info = 'success';
- $massge = '成功';
-
- $json['code'] = $code;
- $json['info'] = $info;
- $json['massge'] = $massge;
- $json['list'] = $province;
- echo json_encode($json);
- ?>
|