while ($row1 =mysql_fetch_assoc($result1)){
   while ($row2 =mysql_fetch_assoc($result2)){
       echo "1";
   }
}上面的代码应该出现了问题:$result2只能遍历一次
请问是什么原因,如何解决?
谢谢