search
HomeBackend DevelopmentPHP TutorialA preliminary study on PHP paging: A simple implementation of the simplest PHP paging code

PHP paging code must be used in various program development, and it is a must-select in website development.

To write paging code, you must first understand the SQL query statement: select * from goods limit 2,7. The core of the PHP paging code revolves around this statement. The SQL statement explains: Query the goods data table and retrieve 7 pieces of data starting from the 2nd piece of data. In the paging code, 7 represents how many pieces of content are displayed on each page, and 2 represents the number of pages turned through formula calculation. By replacing the value of "2" with different parameters, you can filter out different data.

index.php:

include 'conn.php';  //引入数据库操作类 
 
$c conn();  //实例化数据库操作类 
 
$total=$conn->getOne('select count(*) as total from goods'); 
$total=$total['total']; //goods表数据总数据条数 
$num=6; //每页显示条数 
$totalpage=ceil($total/$num);  //计算页数 
if(isset($_GET['page']) && $_GET['page']//注意下面sql语句中红色部分,通过计算来确定从第几条数据开始取出,当前页数减去1后再乘以每页显示数据条数 
$sql='select goods_id,goods_name,shop_price from goods order by goods_id limit '.<span>($thispage-1)*$num</span>.','.$num.''; 
 
$data=$conn->getAll($sql); 
 
foreach($data as $k=>$v){ 
  echo '
  • '.$v['goods_id'].'、'.$v['goods_name'].'---¥'.$v['shop_price'].'
  • '; }
    //显示分页数字列表 for($i=1;$i'.$i.' '; }

    The above code implements the simplest PHP paging effect:

    A preliminary study on PHP paging: A simple implementation of the simplest PHP paging code

    Only click on the page turning number to display different page turning data. It can be further improved on this basis, as long as Once the basic principles are understood, subsequent work will be easier to develop.

    conn.php code:

    /* 
    *连接数据库 进行相关查询操作 
    */
     
    class conn{ 
     
      public function __construct(){ 
        include_once('config.php'); 
        try{   
          $this->pdo = new PDO('mysql:host=localhost;dbname=test', 'root', '123456'); 
          $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 
          $this->pdo->exec('set names utf8'); 
           
     
        }catch(PDOException $e){ 
          echo '数据库连接失败:'.$e->getMessage(); 
          exit(); 
        } 
      } 
       
      //获取一行数据 
      public function getOne($sql){ 
        $rs=$this->pdo->query($sql)->fetch(PDO::FETCH_ASSOC); 
         
        return $rs; 
      } 
       
      //获取多行数据结果 
      public function getAll($sql){ 
        $rs=$this->pdo->query($sql)->fetchall(PDO::FETCH_ASSOC); 
         
        return $rs; 
     
      } 
    }

    conn.php function is to complete the database connection and implement the data extraction operation method. Here I use pdo, and the code can be organized according to everyone's habits.

    config.php:

    * 
    *配置数据库信息 
    */
     
    $cfg_dbhost='localhost'; 
    $cfg_dbname='test'; 
    $cfg_dbuser='root'; 
    $cfg_dbpw='123456'; 
    

    This example is only to illustrate the basic paging principle, and there are still many modifications before it can be used in practice.

    The above is the entire content of the simple implementation of the simplest PHP paging code brought to you by the editor. I hope you like it~

    If you want to know more game activities and game strategies, please continue Pay attention to this site, the editor of this site will bring you the best, funniest and freshest game information as soon as possible. More exciting content, all in the jb51 game channel!

    The above has introduced a preliminary study on PHP paging, a simple implementation of the simplest PHP paging code, including aspects of content. I hope it will be helpful to friends who are interested in PHP tutorials.

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    华为GT3 Pro和GT4的差异是什么?华为GT3 Pro和GT4的差异是什么?Dec 29, 2023 pm 02:27 PM

    许多用户在选择智能手表的时候都会选择的华为的品牌,其中华为GT3pro和GT4都是非常热门的选择,不少用户都很好奇华为GT3pro和GT4有什么区别,下面就就给大家介绍一下二者。华为GT3pro和GT4有什么区别一、外观GT4:46mm和41mm,材质是玻璃表镜+不锈钢机身+高分纤维后壳。GT3pro:46.6mm和42.9mm,材质是蓝宝石玻璃表镜+钛金属机身/陶瓷机身+陶瓷后壳二、健康GT4:采用最新的华为Truseen5.5+算法,结果会更加的精准。GT3pro:多了ECG心电图和血管及安

    php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

    php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

    php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

    实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

    修复:截图工具在 Windows 11 中不起作用修复:截图工具在 Windows 11 中不起作用Aug 24, 2023 am 09:48 AM

    为什么截图工具在Windows11上不起作用了解问题的根本原因有助于找到正确的解决方案。以下是截图工具可能无法正常工作的主要原因:对焦助手已打开:这可以防止截图工具打开。应用程序损坏:如果截图工具在启动时崩溃,则可能已损坏。过时的图形驱动程序:不兼容的驱动程序可能会干扰截图工具。来自其他应用程序的干扰:其他正在运行的应用程序可能与截图工具冲突。证书已过期:升级过程中的错误可能会导致此issu简单的解决方案这些适合大多数用户,不需要任何特殊的技术知识。1.更新窗口和Microsoft应用商店应用程

    php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

    php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

    php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

    判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

    php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

    php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

    php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

    方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version