大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
header("Content-type:text/html;charset=utf-8");
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:申请域名、雅安服务器托管、营销软件、网站建设、西固网站维护、网站推广。
mysql_connect('主机名','账号','密码');
mysql_select_db('数据库名');
mysql_query('set names utf8');
$sql="SELECT username,regdate FROM 表名 where username='".$_GET['USERNAME']."'";
$res=mysql_query($sql);
if($row = mysql_fetch_row($res)){
$json = array(
'state'=true,
'username'=$row[0],
'regdate'=$row[1],
'rand_num'=date('Y/m/d H:i:s')
);
}else{
$json = array(
'state'=false,
'rand_num'=date('Y/m/d H:i:s')
);
}
echo json_encode($json);
exit();
明白的人应该一眼就能看懂吧
//演示用过程化风格,如需要,自行翻译成面向对象风格
//让浏览器识别json
header('Content-type: application/json');
//1、连接数据库
$conn = mysqli_connect("localhost","my_user","my_password","my_db");
//2、查询
$query= mysqli_query($conn,"select * form table where 1 limit 10");
$res = [];
//3、将查询结果赋值给变量res
while($res = mysqli_fetch_assoc($query)){
$res[] = $res;
}
//4、输出json
echo json_encode($res);
返回的就是json字符串,可以直接存入PHP
mysql_query("insert into table(info) values('".$info."')");