search
HomeBackend DevelopmentPHP TutorialMethod to implement message board based on thinkPHP framework_php example

The example in this article describes how to implement a message board based on the thinkPHP framework. Share it with everyone for your reference, the details are as follows:

After struggling for a day, the concept version of THINKPHP Xiao Deng’s message board is finally out

In fact, the development speed of THINKPHP is very fast. As a "brick mover" on the Internet, it is understandable to engage in this kind of pure code farmer's work.

The code implements the following functions

1. Message function.

2. Verification function.

3. Paging display function.

Just wrote a few lines of code (PS: The page design code does not count, even the controller and model code)

I will publish the code of the controller below. I will not elaborate on the code rules of THINKPHP. Just read the thinkphp manual.

class IndexAction extends Action
{
  public function index() {
    $Form = M("word");
    // 按照id排序显示前6条记录
    import("@.ORG.Page");    //导入分页类
      $count = $Form->count();  //计算总数
      $p = new Page ( $count, 1 );
      $list=$Form->limit($p->firstRow.','.$p->listRows)->order('id desc')->findAll();
      $page = $p->show ();
      $this->assign ( "page", $page );
      $this->assign ( "list", $list );
    $this->display(); //模板调用,这个是关键。
  }
  //数据插入
  public function insert() {
    $word = D("word");
     if($vo = $word->create())
       {
         if(false !== $word->add())
        {
           $this->success("数据添加成功");
         }
         else
         {
          $this->error('数据写入错误!');
         }
       }
    else
      {
       $this->error($word->getError());
      }
  }
  //验证重复
  public function checkTitle()
  {
    if (!empty($_POST['username'])) {
      $Form = M("word");
      //getByTitle是model的获取数据根据某字段获取记录的魔术方法
      //比如getById etc getByXXX XXX大写
      if ($Form->getByUsername($_POST['username'])) {
        $this->error('<font color=red>标题已经存在</font>');
      } else {
        $this->success('标题可以使用!');
      }
    } else {
      $this->error('标题必须');
    }
  }
}

The following is the code to verify the model

class wordModel extends Model{
  protected $_validate = array(
   array('username', 'require', '称呼必须!', 1),//1为必须验证
   array('email', 'email', '邮箱格式错误!', 2),//2为不为空时验证
   array('qq','number','QQ号错误',2),
   array('content', 'require', '内容必须',1),
   array('username','','称呼已经存在',0,'unique',1)
  );
  protected $_auto = array(
   array('datetime', 'get_date',1, 'callback'),
   array('ip','getip',1,'callback')
  );
  protected function get_date()
  {
   return date("Y-m-d H:i:s");
  }
  protected function getip()
  {
   return $_SERVER['REMOTE_ADDR'];
  }
}

Thinkphp has one thing to note. In CURD operations, table names are required.

Readers who are interested in more thinkPHP related content can check out the special topics of this site: "ThinkPHP Getting Started Tutorial", "ThinkPHP Template Operation Skills Summary", "ThinkPHP Common Methods Summary", "Smarty Template Basic Tutorial" and "PHP Template Technology" Summarize".

I hope that what is described in this article will be helpful to everyone’s PHP program design based on the ThinkPHP framework.

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
php如何使用ThinkPHP6框架?php如何使用ThinkPHP6框架?May 31, 2023 pm 03:01 PM

随着Web开发的不断发展,开发人员需要使用一些实用的工具和框架来节省时间和努力,同时提高应用程序的品质。ThinkPHP是一个流行的PHP框架,它可以极大地简化开发并提高效率。在本文中,我们将学习如何使用最新版本的ThinkPHP6框架。环境要求首先,您需要确认您的系统满足以下要求:PHP7.1版本及以上MySQL5.5版本及以上Composer是一个

PHP实现留言板功能PHP实现留言板功能Jun 22, 2023 pm 05:18 PM

随着互联网的普及,网站留言板已经成为了很多网站必备的功能。留言板的实现方式有很多,其中比较常见的一种是使用PHP来实现。这篇文章将介绍如何使用PHP来实现留言板功能。一、前端页面设计在实现留言板之前,我们需要先进行前端页面的设计。一个典型的留言板页面通常包含以下几个部分:1.留言输入框:用于输入留言内容。2.留言列表:用于展示已有的留言。3.留言提交按钮:用

如何使用PHP实现留言板功能如何使用PHP实现留言板功能Jun 27, 2023 pm 01:43 PM

随着互联网的发展,留言板作为一种常见的交流方式,被广泛应用于各种网站中。在网站开发中,如何使用PHP实现一个简单的留言板功能,可以帮助网站增加用户互动,提升网站的使用体验。下面将介绍如何使用PHP实现留言板功能。一、建立数据库在使用PHP实现留言板之前,需要先建立一个数据库。可以使用相关工具,比如phpMyAdmin等,创建一个名为message_board

如何利用PHP开发访客留言板功能如何利用PHP开发访客留言板功能Aug 26, 2023 pm 05:36 PM

如何利用PHP开发访客留言板功能引言:访客留言板是网站开发中常见的功能之一,它允许用户在网页上留下评论或留言。在本文中,我们将使用PHP语言来开发一个简单的访客留言板功能,让用户可以在网页上留言并展示所有留言。以下是具体的步骤和代码示例。步骤一:创建数据库和数据表首先,我们需要创建一个数据库来存储留言板中的留言信息。打开phpMyAdmin(或者其他MySQ

开发建议:如何利用ThinkPHP框架进行RBAC权限管理开发建议:如何利用ThinkPHP框架进行RBAC权限管理Nov 22, 2023 pm 08:02 PM

《利用ThinkPHP框架进行RBAC权限管理的开发建议》随着互联网的发展,越来越多的Web应用需要实现权限管理的功能,以保证系统的安全性和可控性。RBAC(Role-BasedAccessControl,基于角色的访问控制)作为一种成熟的权限管理模型,在实际开发中得到了广泛的应用。ThinkPHP作为一款流行的PHP框架,提供了丰富的功能和灵活的扩展机

如何使用PHP实现一个简单的留言板2.0版本如何使用PHP实现一个简单的留言板2.0版本Sep 24, 2023 pm 02:37 PM

如何使用PHP实现一个简单的留言板2.0版本随着互联网的快速发展,留言板成为了许多网站的重要组成部分。留言板不仅为网站提供了用户互动的平台,还能够帮助网站管理者了解用户的实时反馈和意见。在本文中,将介绍如何使用PHP来实现一个简单的留言板2.0版本,包括留言的发布、显示和删除等功能。一、准备工作在开始之前,确保你已经安装了PHP以及一个MySQL数据库服务器

如何使用PHP开发简单的留言板和评论功能如何使用PHP开发简单的留言板和评论功能Sep 20, 2023 pm 03:45 PM

如何使用PHP开发简单的留言板和评论功能引言:留言板和评论功能是网站开发中常见的需求之一,它能够让用户发表意见、交流想法,增加网站的互动性。本文将介绍如何使用PHP开发一个简单的留言板和评论功能,并提供具体的代码示例供读者参考。一、项目准备:在开始开发之前,我们需要确保自己具备以下几个基本条件:一台安装了Apache、MySQL和PHP的服务器;一份空白的H

开发建议:如何利用ThinkPHP框架进行微信开发开发建议:如何利用ThinkPHP框架进行微信开发Nov 22, 2023 pm 04:18 PM

在当今互联网时代,微信已经成为人们日常生活中不可或缺的一部分。无论是社交、支付、购物还是信息传递,微信都扮演着重要的角色。因此,利用ThinkPHP框架进行微信开发已经成为许多开发者的选择。ThinkPHP框架是一款国产的PHP开发框架,它具有开发效率高、扩展性强、文档完善等特点,适合用于微信公众号、小程序等开发。本文将从接入微信公众平台、消息处理、素材管理

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
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.