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

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

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

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

 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 ?>

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

你可能感兴趣的:(android)