php向客户端返回数据 php获取接口返回值

怎么样使用php处理数据库将返回客户端并显示当前状 65533

create databases handle;

坚守“ 做人真诚 · 做事靠谱 · 口碑至上 · 高效敬业 ”的价值观,专业网站建设服务10余年为成都履带搅拌车小微创业公司专业提供企业网站设计营销网站建设商城网站建设手机网站建设小程序网站建设网站改版,从内容策划、视觉设计、底层架构、网页布局、功能开发迭代于一体的高端网站建设服务。

create table user(

id int unsigned not null auto_increment primary key,

name varchar(8),

sex tinyint(1) default '1',

score int not null,

state tinyint(1)

);

2.向表中添加数据(不示例)

3.创建index.html客户端,a.php服务端1,b.php服务端2

Index.html:

!DOCTYPE html

html lang="en"

head

meta charset="UTF-8"

title客户端/title

/head

body

button onclick="send('a.php?state=0')"开始请求/button

div style="position: fixed;width: 500px;height: 300px;top: 100px;background: gray"

span style="color: white;font-size: 20px;"/span

/div

script type="text/javascript" src="./jquery-1.10.2.min.js"/script

script type="text/javascript"

//创建一个模态框

function display(value){

$('span').html(value);

}

//ajax

function send(dizhi){

$.ajax({

type: "get",

url: dizhi,

success: function(msg){

var arr=JSON.parse(msg);

console.log(arr);

//alert(arr.value);

var tishi="已经处理 "+arr.now +"个,共"+arr.all+"个";

display(tishi);

if(arr.now!=arr.all){

send("a.php?now="+arr.now+"all="+arr.all);

}else{

alert("完成!");

}

}

});

}

/script

/body

/html

a.php:

?php

require('./dbconfig.php');

$link=mysql_connect(HOST,USER,PASS) or die('数据库链接失败');

mysql_select_db(DBNAME);

/*

查询数据

$sql="select * from user";

$result=mysql_query($sql);

$row=mysql_fetch_assoc($result);

var_dump($row);

*/

/*

循环插入

for($i=3;$i=100;$i++){

$sql= "insert into user(name,score,state) values('z".$i."',".$i.",1)";

mysql_query($sql);

}

*/

/*查询需要处理的数据总数*/

//isset($_GET['state'])?$_GET['state']:0;

if(isset($_GET['state'])){

$sql="select count(*) from user";

$result=mysql_query($sql);

$all=mysql_result($result,0);

$now=0;

header("Location: b.php?all={$all}now=0");

}else{

header("Location: b.php?all={$_GET['all']}now={$_GET['now']}");

}

/*返回当前处理的数据*/

b.php:

?php

require('./dbconfig.php');

$link=mysql_connect(HOST,USER,PASS) or die('数据库链接失败');

mysql_select_db(DBNAME);

/*返回当前处理的数据*/

//$id=$_GET['id'];//获取将要处理的id

$now=$_GET['now'];//已经处理的个数

$all=$_GET['all'];//总共要处理的个数

$sql="select score from user limit {$now},1";

$result=mysql_query($sql);

$value=mysql_result($result, 0);

$now++;

$arr=array(

'now'=$now,

'all'=$all,

'value'=$value

);

//print_r($arr);

echo json_encode($arr);

dbconfig.php:

?php

define('HOST','127.0.0.1');

define('USER', 'root');

define('PASS','root');

define('DBNAME','handle');

PHP如何做一个接口,向安卓客户端提供数据

其实就是访问这个php文件,返回一段数据,一般用json,然后安卓可以解析就行了了。走http协议。

数据怎么返回给原页面(PHP)?

你大概要先搞清楚 页面(前端) 和 PHP(后端) 的关系;

第一个页面 由 A.php完成, 提交后 输入的内容 交给B.php 由B.php 生成第二个页面。

这个时候 A.php已经不起作用了。 A.PHP 提交的内容在服务器端的 全局变量$_POST['name']里面(name 就是A.PHP中TEXTAREA 标签的name 属性值)。

注意 : 第一个页面不存在了,要想显示第一个页面的内容,就在B.php.中把第一个页面复制一遍。把重新建立一个textarea 标签 默认值是你要显示的值,


本文名称:php向客户端返回数据 php获取接口返回值
分享链接:http://lszwz.com/article/hepego.html

其他资讯

售后响应及时

7×24小时客服热线

数据备份

更安全、更高效、更稳定

价格公道精准

项目经理精准报价不弄虚作假

合作无风险

重合同讲信誉,无效全额退款