$sqlthree="SELECT  filename,ftitle,one,two,three,four,five,newstime,datetime from table  where classid='116'  ";
$rthree = mysql_query($sqlthree, $con);$sqlfive="SELECT  filename,ftitle,one,two,three,four,five,newstime,datetime from table where classid='117'  ";
$rfive = mysql_query($sqlfive, $con);<?php
 while($rowthree = mysql_fetch_row($rthree))

 echo     "<td class='font-12' align='center' >";
 echo "<a href='$rowthree[0].html'  style='text-decoration:none;' >$rowthree[1]</a>";
 echo "</td>";
 echo     "<td class='font-12' align='center' >";
 echo $rowthree[8];
 echo "</td>";
  echo     "<td class='font-12' align='center' >";
 echo $rowthree[2].'&nbsp;'.$rowthree[3].'&nbsp;'.$rowthree[4];
 echo "</td>";
  echo     "<td class='font-12' align='center' >";
 echo $rowthree[7];
 echo "</td>";
}?> <?php
 while($rowfive = mysql_fetch_row($rfive))

 echo     "<td class='font-12' align='center' >";
 echo "<a href='$rowfive[0].html'  style='text-decoration:none;' >$rowfive[1]</a>";
 echo "</td>";
 echo     "<td class='font-12' align='center' >";
 echo $rowfive[8];
 echo "</td>";
  echo     "<td class='font-12' align='center' >";
 echo $rowfive[2].'&nbsp;'.$rowfive[3].'&nbsp;'.$rowfive[4].'&nbsp;'.$rowfive[5].'&nbsp;'.$rowfive[6];
 echo "</td>";
  echo     "<td class='font-12' align='center' >";
 echo $rowfive[7];
 echo "</td>";
}?> while只循环了 three 数据  five 没有读取到 怎么才能读取到?