Home Backend Development PHP Tutorial ThinkPHP basic add, delete, check and modify operation example tutorial

ThinkPHP basic add, delete, check and modify operation example tutorial

Jun 06, 2018 pm 01:55 PM
thinkphp operate

This article mainly introduces the basic add, delete, check and modify operations of ThinkPHP. It has a very wide range of applications in ThinkPHP programming. Friends in need can refer to it

The example of this article describes the basic add, delete, check and modify operations of ThinkPHP Operation is the most commonly used basic operation in ThinkPHP project development and has very important application value. Now I will share the complete example code with you, I hope it will be helpful to everyone. The details are as follows:

1. Table aoli_user field settings:

The table aoli_user mainly has the following fields:

id username password createtime createip

2. View template part

1. User home page template:

aoli/Home/Tpl/default/User/index The .html page code is as follows:

1

2

3

4

5

6

7

8

9

10

<form action="__URL__/add" method="post">

 用户名:<input type="text" name="username" /><br />

 密码:<input type="password" name="password" /><br />

 重复密码:<input type="repassword" name="repassword" /><br />

 <input type="submit" value="注册" />

</form>

 

<volist name="alist" id="vo">

 <li><span>ID:</span>{$vo[&#39;id&#39;]}<span>用户名:</span>{$vo[&#39;username&#39;]}<span>注册ip:</span>{$vo[&#39;createip&#39;]}<a href="__URL__/del/id/{$vo[&#39;id&#39;]}">删除</a>  <a href="__URL__/edit/id/{$vo[&#39;id&#39;]}">编辑</a></li>

</volist>

Copy after login

2. User edit template:

aoli/Home/Tpl/default The /User/edit.html page code is as follows:

1

2

3

4

5

6

7

8

<form action="__URL__/update" method="post">

 用户名:<input type="text" name="username" value="{$data[&#39;username&#39;]}" /><br />

 密码:<input type="password" name="password" value="{$data[&#39;password&#39;]}" /><br />

 IP:<input type="text" name="createip" value="{$data[&#39;createip&#39;]}" /><br />

 时间:<input type="text" name="createtime" value="{$data[&#39;createtime&#39;]}" /><br />

 <input type="hidden" value="{$data[&#39;id&#39;]}" name="id" />

 <input type="submit" value="更新" />

</form>

Copy after login

2. Action part:

aoli/Home/ The Lib/Action/UserAction.class.php page is as follows:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

class UserAction extends Action {

   function index(){

     $user=M(&#39;user&#39;);

     $list=$user->field(array(&#39;id&#39;,&#39;username&#39;,&#39;createip&#39;))->select();

     $this->assign(&#39;title&#39;,&#39;thinkphp视频演示&#39;);

     $this->assign(&#39;alist&#39;,$list);

     $this->display();    

   }

   //删除

   function del(){

     $user=D(&#39;user&#39;);

     if($user->delete($_GET[&#39;id&#39;])){

       $this->success(&#39;删除成功&#39;);  

     }else{

       $this->error(&#39;删除失败&#39;);

     }

   }

   //增加

   function add(){

     Load(&#39;extend&#39;);

     if($_POST[&#39;password&#39;]!=$_POST[&#39;repassword&#39;]){

       $this->error(&#39;两次密码不一致&#39;);  

     }

     $user=D(&#39;user&#39;);

     if($vo=$user->create()){

       $user->password=md5($user->password);

       $user->createtime=time();

       //$user->createip=$_SERVER[];

       $user->createip=get_client_ip();

       if($user->add()){

         $this->success(&#39;用户注册成功,返回上级页面&#39;);  

       }else{

         $this->error(&#39;用户注册失败,返回上级页面&#39;);

       }

     }else{

       $this->error($user->getError());  

     }

   }

   //显示用户的修改项

   function edit(){

     $user=M(&#39;user&#39;);

     $id=(int)$_GET[&#39;id&#39;];

     $list=$user->where("id=$id")->find();

     $this->assign(&#39;data&#39;,$list);

     $this->assign(&#39;title&#39;,&#39;显示用户编辑信息&#39;);

     $this->display();

   }

   //将更新数据写入数据库

   function update(){

     $user=M(&#39;user&#39;);

     $user->password=md5($user->password);

     if($user->create()){

       if($insertid=$user->save()){

         $this->success(&#39;更新成功,受影响的行数为&#39;.$insertid);

       }else{

         $this->error(&#39;更新失败&#39;);  

       }

     }

   }

}

?>

Copy after login

Interested readers can debug and run the examples described in this article in the project to deepen their understanding of The understanding of ThinkPHP's addition, deletion, check and modification operations can be used flexibly in future projects.

Related recommendations:

ThinkPHP string functions and common functions summary

ThinkPHP implements simple login function

The above is the detailed content of ThinkPHP basic add, delete, check and modify operation example tutorial. For more information, please follow other related articles on the PHP Chinese website!

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)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks 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)

PyCharm usage tutorial: guide you in detail to run the operation PyCharm usage tutorial: guide you in detail to run the operation Feb 26, 2024 pm 05:51 PM

PyCharm is a very popular Python integrated development environment (IDE). It provides a wealth of functions and tools to make Python development more efficient and convenient. This article will introduce you to the basic operation methods of PyCharm and provide specific code examples to help readers quickly get started and become proficient in operating the tool. 1. Download and install PyCharm First, we need to go to the PyCharm official website (https://www.jetbrains.com/pyc

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.

What is sudo and why is it important? What is sudo and why is it important? Feb 21, 2024 pm 07:01 PM

sudo (superuser execution) is a key command in Linux and Unix systems that allows ordinary users to run specific commands with root privileges. The function of sudo is mainly reflected in the following aspects: Providing permission control: sudo achieves strict control over system resources and sensitive operations by authorizing users to temporarily obtain superuser permissions. Ordinary users can only obtain temporary privileges through sudo when needed, and do not need to log in as superuser all the time. Improved security: By using sudo, you can avoid using the root account during routine operations. Using the root account for all operations may lead to unexpected system damage, as any mistaken or careless operation will have full permissions. and

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.

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.

Linux Deploy operation steps and precautions Linux Deploy operation steps and precautions Mar 14, 2024 pm 03:03 PM

LinuxDeploy operating steps and precautions LinuxDeploy is a powerful tool that can help users quickly deploy various Linux distributions on Android devices, allowing users to experience a complete Linux system on their mobile devices. This article will introduce the operating steps and precautions of LinuxDeploy in detail, and provide specific code examples to help readers better use this tool. Operation steps: Install LinuxDeploy: First, install

What to do if you forget to press F2 for win10 boot password What to do if you forget to press F2 for win10 boot password Feb 28, 2024 am 08:31 AM

Presumably many users have several unused computers at home, and they have completely forgotten the power-on password because they have not been used for a long time, so they would like to know what to do if they forget the password? Then let’s take a look together. What to do if you forget to press F2 for win10 boot password? 1. Press the power button of the computer, and then press F2 when turning on the computer (different computer brands have different buttons to enter the BIOS). 2. In the bios interface, find the security option (the location may be different for different brands of computers). Usually in the settings menu at the top. 3. Then find the SupervisorPassword option and click it. 4. At this time, the user can see his password, and at the same time find the Enabled next to it and switch it to Dis.

Huawei Mate60 Pro screenshot operation steps sharing Huawei Mate60 Pro screenshot operation steps sharing Mar 23, 2024 am 11:15 AM

With the popularity of smartphones, the screenshot function has become one of the essential skills for daily use of mobile phones. As one of Huawei's flagship mobile phones, Huawei Mate60Pro's screenshot function has naturally attracted much attention from users. Today, we will share the screenshot operation steps of Huawei Mate60Pro mobile phone, so that everyone can take screenshots more conveniently. First of all, Huawei Mate60Pro mobile phone provides a variety of screenshot methods, and you can choose the method that suits you according to your personal habits. The following is a detailed introduction to several commonly used interceptions:

See all articles