慕侠2389804
<?php //分页原理$result = mysql_query("select id from p_newsbase");$total = mysql_num_rows($result);pageft($total, 20);if ($firstcount < 0) $firstcount = 0;//查找条数$query = $db->findall("p_newsbase limit $firstcount, $displaypg");while ($row = $db->fetch_array($query)) {?>在这里加载你的html代码......<?php}//这里的 '}' 就是闭合上面的php语句中的 'while(){' 的。为了把php语句和html语句分开才这样写?>