首页 > 开发 > PHP > 正文

php while循环得到循环次数

2024-05-04 23:19:02
字体:
来源:转载
供稿:网友

复制代码 代码如下:


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


在实际工作,偶尔会用到的。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表