大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
数据库提到的数据一般是资源类型的,要逐一读出,添加到数组
成都创新互联于2013年开始,是专业互联网技术服务公司,拥有项目成都网站制作、成都网站设计网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元安平做网站,已为上家服务,为安平各地企业和个人服务,联系电话:18980820575
while($row = mysql_fetch_assoc($res)){
$data[] = $row;
}
foreach或者while
例如
$sql = "select * from test";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result)) {
echo $row['要输出的字段'];
}
自己敲了一段 可以改改放到div或者表格中 循环
本文实例讲述了php实现通用的从数据库表读取数据到数组的函数。分享给大家供大家参考。具体分析如下:
此函数不关心表结构,只需要指定表名、结构和查询条件既可以对表进行通用查询操作,非常实用。
function listmytablerows($table, $name, $field, $where, $textID) { / / Connect to the database and query execution connect (); $Sql = "select * from". $table. "". $where. "ORDER BY". $field; $Req = mysql_query($sql); $Res = mysql_num_rows($req); ? Select name = "?php echo $name; ?" id="?php echo $textID; ?" option value="" ____/ option ? Php / / We do a loop that will read the information for each record while ($data = mysql_fetch_array($res)) { / / We display the information from the current record ? Option value = "?php echo $data['id']; ?" ?php echo $data[$field]; ? / Option ? Php } ? / Select ? Php } ?
function(){
$查询="select
*
from
表";
//
如果只查询标题,就只用些标题的对应字段名
//连接数据库
for($i=0;$i$记录数;$i++){
$读取=$lj-fetch_assoc();
//
查询
$sid[$i]=$读取[s_id];
$标题[$i]
=
$读取[s_title];
}
$arra=array
($aid,$title);
return
$arra;
}
不知可否帮你解决问题了