小程序接口

<?php
//微信小程序实现
include_once("../config.inc.php");

$contentStr =array(array());
$sql="select id,mp3name from mp3 ";
$rst=mysql_query($sql);
$i=0;
while($rs=mysql_fetch_array($rst)){
    $contentStr[$i]['id']=$rs['id'];
    $contentStr[$i]['mp3name']=$rs['mp3name'];

    $i++;
}//end while
//print_r($contentStr);
echo json_encode($contentStr);
?>
<?php
//微信小程序实现
include_once("../config.inc.php");

$contentStr =array(array());
$sql="select id,mp3name,mp3url from mp3 where id=".$_REQUEST['id'];
$rst=mysql_query($sql);
$i=0;
while($rs=mysql_fetch_array($rst)){
    $contentStr[$i]['id']=$rs['id'];
    $contentStr[$i]['mp3name']=$rs['mp3name'];
    $contentStr[$i]['mp3url']=$rs['mp3url'];

    $i++;
}//end while


echo json_encode($contentStr);
?>

 

posted @ 2017-07-07 15:31  Harry-  阅读(188)  评论(0)    收藏  举报