复制代码 代码如下:
<?php
$link = mysql_connect('localhost','root','pwd');
mysql_select_db('db');
$sql = "select region_id,local_name from regions where region_grade=1";
$result = mysql_query($sql);
$i =0;
while ($row= mysql_fetch_assoc($result)) {
$list[$i]['text']=$row['local_name'];
$list[$i]['value']=$row['region_id'];
$i++;
}
$list = json_encode($list);
echo $list;
?>
在实际工作,偶尔会用到的。
<?php
$link = mysql_connect('localhost','root','pwd');
mysql_select_db('db');
$sql = "select region_id,local_name from regions where region_grade=1";
$result = mysql_query($sql);
$i =0;
while ($row= mysql_fetch_assoc($result)) {
$list[$i]['text']=$row['local_name'];
$list[$i]['value']=$row['region_id'];
$i++;
}
$list = json_encode($list);
echo $list;
?>
在实际工作,偶尔会用到的。
标签:
while循环
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“php while循环得到循环次数”评论...