sql测试文件在贵哥的编程之路资源里面啊免费下
<?php
$link=mysqli_connect('localhost','root','','a');
mysqli_set_charset($link,'utf8');
$sql="select * from php_area where status=1 and type=1 order by sort desc";
$result=mysqli_query($link,$sql);
if(mysqli_num_rows($result) > 0){
while($row = mysqli_fetch_assoc($result)) {
$data[] = $row;
}
$json = json_encode(array(
"resultCode"=>200,
"message"=>"查询成功!",
"data"=>$data
),JSON_UNESCAPED_UNICODE);
echo($json);
}else{
$json = json_encode(array(
"resultCode"=>200,
"message"=>"暂无数据",
"data"=>''
),JSON_UNESCAPED_UNICODE);
echo($json);
}
?>

|