当前位置:Gxlcms > PHP教程 > while遍历结果集解决思路

while遍历结果集解决思路

时间:2021-07-01 10:21:17 帮助过:34人阅读

while遍历结果集
for遍历。

$num=mysql_num_rows($result);
for($i=0;$i<$num;$i++)
{
$row=mysql_fetch_assoc($result);
$arr[]=$row;
}


while的条件怎么填- -。 貌似我好像见过。貌似忘了。
------解决方案--------------------
while($row=mysql_fetch_assoc($result)){
$arr[]=$row;
}

人气教程排行