夺命雷公狗---PHP---玩转安卓1之数据传递

还没接触过的时候以为很难,但实际上也就是那么回事,,

首先来建一张表

 

然后开始写php代码:

<?php
    $link = mysql_connect('localhost','root','') or die("数据库链接失败");
    mysql_query('set names utf8');
    mysql_select_db('xsphp');
    $result = mysql_query("select * from news");
    $n=0;
    while($row = mysql_fetch_array($result)){
        $arr[$n++] = array("title"=>$row['title'],
                            "auto"=>$row['auto'],
                            "content_url"=>$row['content_url'],
                            "pic_url"=>$row['pic_url']);
    }
    echo json_encode($arr);

 

 

然后直接给地址安卓开发人员即可。。。。

 

 

posted @ 2015-12-11 10:38  夺命雷公狗  阅读(163)  评论(0编辑  收藏  举报