Android通过PHP连接MySQL(用到Json)

1下载phpnow 如果已经有mysql 则需要换一个端口

在服务器机器上的phpnow安装目录E:\PHPnow-1.5.5\htdocs下新建一个test.php文件:

其中我用的数据库是test,表是user 属性只有id和name两个字段

Android通过PHP连接MySQL(用到Json)
 1 <?php
 2 $link=mysql_connect("localhost","root","你的密码");
 3 mysql_query("SET NAMES utf8");
 4 mysql_select_db("test",$link);
 5 $sql=mysql_query("select * from user ",$link);
 6 while($row=mysql_fetch_assoc($sql))
 7 $output[]=$row;
 8 print(json_encode($output));
 9 mysql_close();
10 ?>
Android通过PHP连接MySQL(用到Json)

具体搭建:http://blog.sina.com.cn/s/blog_6923201d01011t6h.html

Android通过PHP连接MySQL(用到Json),布布扣,bubuko.com

Android通过PHP连接MySQL(用到Json)

上一篇:苹果应用的售价最低1美元还是高了


下一篇:学习IOS开发UI篇--Quartz2D基本绘图