首页 > 后端开发 > php教程 > 請問一這種陣列要怎么充值

請問一這種陣列要怎么充值

WBOY
发布: 2016-06-13 10:48:08
原创
834 人浏览过

請問一這種陣列要如何充值?
請教大家,有一個陣列,想從資料表取出值來填入,要怎麼改呢?

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$sql = "select sid,township from tbl_township where pid=1";$res = db_query($sql);            while (list($sid,$township)=mysql_fetch_row($res)):       endwhile; 
登录后复制


陣列型式如下:
PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$provinces = array(array('sid' => 'bj', 'township' => 'Beijing'),array('sid' => 'hb', 'township' => 'Hubei'));
登录后复制


------解决方案--------------------
while($row = mysql_fetch_assoc($res)) {
$provinces[] = $row;
}
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板