php分页显示文章列表

    0) { //利用LIMIT关键字获取本页所要显示的记录,注意limit两边要"空格"; $querySel = $querySel. " limit ".$begin_record. ", ".$page_size; $result = mysql_query($querySel) or die(mysql_error()); $current_records = mysql_num_rows($result); //取得本页的记录总数 //将查询结果放在$result_show 数组 $result_show = array(); } $i = 0; while($row=mysql_fetch_array($result)) { $result_show[$i] = $row; ?>

  

转载于:https://www.cnblogs.com/shanmao/p/3468885.html

你可能感兴趣的:(php分页显示文章列表)