我有一些关联数组,其值是从一段时间插入的{}。
//some sql select
$comar=array();
while($row=mysql_fetch_array($result)){
//another sql countrow
$rowdd=mysql_fetch_row($result);
$postuid=$row[2];
$comar[$postuid]= $rowdd[count(idnum)];
$_SESSION['comar']=$comar;
}
但是这段代码只显示最后一个 postuid 的 idnum。如何将其全部添加到一个变量中,然后将其放入会话中。