Table of Contents
ThinkPHP verification code and paging example tutorial, thinkphp example tutorial
How to change web page paging, THINKPHP core, for example: http://wwwttplmgcom/special/8html
How to get the transfer variables of the previous page and next page when thinkphp is paginating? I want to attach the upper and lower page effects to the picture without using the original paging effect.
Home Backend Development PHP Tutorial ThinkPHP verification code and paging example tutorial, thinkphp example tutorial_PHP tutorial

ThinkPHP verification code and paging example tutorial, thinkphp example tutorial_PHP tutorial

Jul 13, 2016 am 10:20 AM
thinkphp Pagination Verification code

ThinkPHP verification code and paging example tutorial, thinkphp example tutorial

The examples in this article describe two commonly used functions of ThinkPHP: verification code and paging. It is very common in ThinkPHP project development and has high practical value. The complete example is shared with everyone for your reference. The details are as follows:

1. Verification code:

Import the verification code class, there is a verification code method in aoliThinkPHPLibORGUtilImage.class.php

1. English verification code:

buildImageVerify($length,$mode,$type,$width,$height,$verifyName)
Copy after login

The parameters are as follows:

length: The length of the verification code, the default is 4 digits
mode: The type of verification string, the default is number, other supported types are 0 letters 1 numbers 2 uppercase letters 3 lowercase letters 4
Chinese 5 mixed (removed the confusing character oOLl and the number 01)
type: The image type of the verification code, the default is png
width: The width of the verification code. By default, it will be automatically calculated based on the length of the verification code
height: the height of the verification code, the default is 22
verifyName: SESSION record name of the verification code, the default is verify

2. Chinese verification code:

GBVerify ($length,$type,$width,$height,$fontface,$verifyName)
Copy after login

The parameters are as follows:

length: The length of the verification code, the default is 4 digits
type: The image type of the verification code, the default is png
width: The width of the verification code. By default, it will be automatically calculated based on the length of the verification code
height: the height of the verification code, the default is 50
fontface: The font file used, use the complete file name or put it in the directory where the image class is located. The default font file used is simhei.ttf (this file can be found under the Fonts directory of the window)
verifyName: SESSION record name of the verification code, the default is verify

3. If the verification code cannot be displayed, please check:

①.PHP Whether GD library support has been installed;
②. Is there any output before output (especially the BOM header information output of UTF8);
③.Is the Image class library imported correctly?
④. If it is a Chinese verification code, check whether the font file has been copied to the directory where the class library is located;

4.action part:

CommonAction.class.php page code is as follows:

<&#63;php
class CommonAction extends Action{
  function verify(){    
    import('ORG.Util.Image');
    //英文验证码
    //Image::buildImageVerify(5,5,gif,90,30,'verify');
    //中文验证码
    Image::GBVerify();
  }  
  
}
&#63;>

Copy after login

5.view template part:

The template index.html page is as follows:

 验证码:<input type="text" name="verify" /><img src="__APP__/common/verify" onclick="show(this)" /><br />
 <input type="submit" value="注册" />
</form>

<script type="text/javascript">
  function show(obj){
    obj.src="__APP__/common/verify/random/"+Math.random();    
  }
</script>

Copy after login

6. Controller:

The controller UserAction.class.php is as follows:

//验证码验证
if($_SESSION['verify']!=md5($_POST['verify'])){
  $this->error('验证码不正确');   
}

Copy after login

2. Pagination:

1. Import the paging class, there is a verification code method in aoliThinkPHPLibORGUtilPage.class.php

2.action part:

UserAction.class.php page is as follows:

function index(){
  import('ORG.Util.Page');//引入分布类
  $user=M('user');
  $count=$user->count();
  $page=new Page($count,3);//一页显示5条
  $page->setConfig('theme','<div style="font-weight:bold;">总共:%totalRow%%header% %nowPage%/%totalPage%页 %first% %upPage% %prePage% %linkPage% %nextPage% %downPage% %end%</div>');
  $show=$page->show();
  $list=$user->field(array('id','username','createip'))->order('id desc')->limit($page->firstRow.','.$page->listRows)->select();
  $this->assign('alist',$list);
  $this->assign('page',$show);
  $this->display();
}

Copy after login

3.view template part:

The template page index.html page is as follows:

<volist name="alist" id="vo">
 <li><span>ID:</span>{$vo['id']}<span>用户名:</span>{$vo['username']}<span>注册ip:</span>{$vo['createip']}<a href="__URL__/del/id/{$vo['id']}">删除</a>  <a href="__URL__/edit/id/{$vo['id']}">编辑</a></li>
</volist>
{$page}

Copy after login

Interested readers can debug and run the ThinkPHP verification code and paging examples in this article. I believe there will be new gains.

How to change web page paging, THINKPHP core, for example: http://wwwttplmgcom/special/8html

Use the setConfig method in the paging class to customize the paging style:
I have a custom paging class that I used before. You can change it here.

/** * * Enter public paging class* @param array $map paging filtering conditions* @param class $Form data model* @param integer $limit number of items displayed in paging* @param string $order Sorting* @return array */ public function _list($map,$Form,$limit=9,$order='add_time'){ $res=array(); $p=empty($_GET['p']) ? 0 : (int)$_GET['p']; $res['list'] = $Form->field(true)->where($map)->order($order)-> page($p.','.$limit)->select();import('ORG.Util.Page'); // Import paging class $count = $Form->where($map)-> ;count();// Query the total number of records that meet the requirements $Page = new Page($count,$limit);// Instantiate the paging class and pass in the total number of records and the number of records displayed on each page $Page-> rollPage=3;$Page->setConfig('theme'," %upPage% %linkPage% %downPage%

  • %nowPage%/%totalPage% page
  • ");$res['page'] = $Page->show();// Display output in paging return $res; }

    How to get the transfer variables of the previous page and next page when thinkphp is paginating? I want to attach the upper and lower page effects to the picture without using the original paging effect.

    public function index() {//Just change the style of the icon $user = M('User'); import('ORG.Util.Page'); $count = $user->count( ); $listRows = 5; $page = new Page($count, $listRows); $list = $user->limit("{$page->firstRow},{$page->listRows}") ->select(); $page->setConfig('prev', '');//Previous page $page->setConfig('next', '');//Next page// $page-> setConfig('first', ''); // $page->setConfig('last', ''); $page->setConfig('theme', '%upPage% %downPage%');// Only display the upper and lower page options $this->assign('page', $page->show()); $this->assign('list', $list); $this->display(); }

    www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/868240.htmlTechArticleThinkPHP verification code and paging example tutorial, thinkphp example tutorial This article describes two commonly used functions of ThinkPHP: verification code with pagination. It is very common in ThinkPHP project development, with...
    Statement of this Website
    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

    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

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌
    Two Point Museum: All Exhibits And Where To Find Them
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    What should I do if Google Chrome does not display the verification code image? Chrome browser does not display the verification code? What should I do if Google Chrome does not display the verification code image? Chrome browser does not display the verification code? Mar 13, 2024 pm 08:55 PM

    What should I do if Google Chrome does not display the verification code image? Sometimes you need a verification code to log in to a web page using Google Chrome. Some users find that Google Chrome cannot display the content of the image properly when using image verification codes. What should be done? The editor below will introduce how to deal with the Google Chrome verification code not being displayed. I hope it will be helpful to everyone! Method introduction: 1. Enter the software, click the "More" button in the upper right corner, and select "Settings" in the option list below to enter. 2. After entering the new interface, click the "Privacy Settings and Security" option on the left. 3. Then click "Website Settings" on the right

    How to run thinkphp project How to run thinkphp project Apr 09, 2024 pm 05:33 PM

    To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

    There are several versions of thinkphp There are several versions of thinkphp Apr 09, 2024 pm 06:09 PM

    ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

    Can virtual numbers receive verification codes? Can virtual numbers receive verification codes? Jan 02, 2024 am 10:22 AM

    The virtual number can receive the verification code. As long as the mobile phone number filled in during registration complies with the regulations and the mobile phone number can be connected normally, you can receive the SMS verification code. However, you need to be careful when using virtual mobile phone numbers. Some websites do not support virtual mobile phone number registration, so you need to choose a regular virtual mobile phone number service provider.

    How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

    Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

    Which one is better, laravel or thinkphp? Which one is better, laravel or thinkphp? Apr 09, 2024 pm 03:18 PM

    Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

    How to install thinkphp How to install thinkphp Apr 09, 2024 pm 05:42 PM

    ThinkPHP installation steps: Prepare PHP, Composer, and MySQL environments. Create projects using Composer. Install the ThinkPHP framework and dependencies. Configure database connection. Generate application code. Launch the application and visit http://localhost:8000.

    How is the performance of thinkphp? How is the performance of thinkphp? Apr 09, 2024 pm 05:24 PM

    ThinkPHP is a high-performance PHP framework with advantages such as caching mechanism, code optimization, parallel processing and database optimization. Official performance tests show that it can handle more than 10,000 requests per second and is widely used in large-scale websites and enterprise systems such as JD.com and Ctrip in actual applications.

    See all articles