php写的json服务端接口以及用php做的调用页面

用php写的服务端,实现json传参数查询mysl的数据,mysql的简单查询与json对比,用的是dedecms的数据库,查询的是dede_area表,http://localhost:8080/test/index.php?index=5&count=5 这是服务端的接口,页面效果如下:


php写的json服务端接口以及用php做的调用页面_第1张图片
 


nihao 



require("db_config.php");



// array for JSON response
$response = array(); //定义数组存放sql查询值
 
$count=$_GET['count'];
$index=$_GET['index'];
$conn=mysql_connect($mysql_server_name,$mysql_username,$mysql_password) or die("error connecting") ; //连接数据库   
mysql_query("set names 'utf8'"); //数据库输出编码 应该与你的数据库编码保持一致.建议用UTF-8 国际标准编码.  
mysql_select_db($mysql_database); //打开数据库   
$sql ="select * from dede_area order by id desc limit $index,$count"   ; //SQL语句   
$result = mysql_query($sql,$conn); //查询 




//这里用mysql_fetch_assoc 代替mysql_fetch_array,就可以让结果集带数组功能
while($row = mysql_fetch_assoc($result))   
{   
//排版代码
echo "
"; //排版代码   
echo $row['id']."   ".$row['name'] ."   ".$row['reid']."   ".$row['disorder']. "
";   
echo "
";   

//把数组交给$response
$response[]=$row; 



// echoing JSON response
// $response= json_encode($response);
// echo json_encode($response ); 
// php5.4才有此功能
echo json_encode($response, JSON_UNESCAPED_UNICODE); 


 
mysql_close();
?>

接下来是调用接口的php页面,当然也可以用asp.net,android或者其他后台语言来写,我h用的是php写的页面,文件名是index2.php,跟服务端以示区别,ttp://localhost:8080/test/index2.php,内容和服务端展现的是一样的代码如下:

 
$handle = fopen("http://192.168.0.45:8080/test/index.php?index=5&count=5","rb");
 
$content = "";
while (!feof($handle)) {
    $content .= fread($handle, 10000);
}
fclose($handle);


echo $content;


 

?>


你可能感兴趣的:(php)