Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial thinkphp留言板如何写?

thinkphp留言板如何写?

Jun 23, 2016 pm 01:58 PM

RT,老板让写个留言板,可我thinkphp框架还没学会,写不了啊。。求各位给点思路,到底该怎么写?


回复讨论(解决方案)

留言板不用thinkPHP也可以写。

 这个你说的思路是什么啊,就一个增加留言,入库的功能吧,

留言板不用thinkPHP也可以写。


不用thinkphp我会写,问题老板让用phpthink写啊,怎么办!

 这个你说的思路是什么啊,就一个增加留言,入库的功能吧,


只要最简单的功能就行了,增加留言和显示留言,别的功能暂时不要。。


 这个你说的思路是什么啊,就一个增加留言,入库的功能吧,


只要最简单的功能就行了,增加留言和显示留言,别的功能暂时不要。。 那你有PHP基础,看看TP怎么运行的吧,然后看下CURD操作,基本上就可以了。



 这个你说的思路是什么啊,就一个增加留言,入库的功能吧,


只要最简单的功能就行了,增加留言和显示留言,别的功能暂时不要。。 那你有PHP基础,看看TP怎么运行的吧,然后看下CURD操作,基本上就可以了。
TP的运行原理怎么理解最快啊?看TP开发手册吗?可是我赶时间啊,能告诉我主要看手册的哪几部分就基本可以开发了呢?谢谢了啊

首先知道thinkphp是个MVC框架就ok了
Model---操作数据库的具体方法
Action---里边有function,m=actionName&a=methodName就访问某个方法了
Tpl---模板
比如留言板:
需要展示,需要读取,需要插入
分别为每个动作写一个function就好了,function里调用Model类的方法就好了

首先知道thinkphp是个MVC框架就ok了
Model---操作数据库的具体方法
Action---里边有function,m=actionName&a=methodName就访问某个方法了
Tpl---模板
比如留言板:
需要展示,需要读取,需要插入
分别为每个动作写一个function就好了,function里调用Model类的方法就好了


我现在建了一个liuyan数据库,里面有个details表用来放留言数据,要显示出来,该做哪些操作呢。。

超级简单
这是action中的方法

function detail_show() {    $msgs = M('details')->select();    $this->assign('details', $msgs);    $this->display();}
Copy after login
Copy after login
Copy after login

在模板中

用户名:{$detail.username} 说 : {$detail.content}---时间:{$detail.add_time|date="Y-m-d H:i:s",###}


这样就会一行一行循环出来了

超级简单
这是action中的方法

function detail_show() {    $msgs = M('details')->select();    $this->assign('details', $msgs);    $this->display();}
Copy after login
Copy after login
Copy after login

在模板中

用户名:{$detail.username} 说 : {$detail.content}---时间:{$detail.add_time|date="Y-m-d H:i:s",###}


这样就会一行一行循环出来了


嗯,那我要增加一条留言呢,表单的method和action属性该怎么写呢?

超级简单
这是action中的方法

function detail_show() {    $msgs = M('details')->select();    $this->assign('details', $msgs);    $this->display();}
Copy after login
Copy after login
Copy after login

在模板中

用户名:{$detail.username}  说 : {$detail.content}---时间:{$detail.add_time|date="Y-m-d H:i:s",###}


这样就会一行一行循环出来了


求指教啊。。。。

求助啊,增加留言这个功能怎么弄!

表单就是正常的表单就ok了,form的action='/?m=liuyanban&a=add_liuyan'
action中这么处理
$data['user_id'] = $this->_get('user_id');
$data['content'] = $this->_get('content');
M('liuyan')->add($data);
这就插入数据库了

表单就是正常的表单就ok了,form的action='/?m=liuyanban&a=add_liuyan'
action中这么处理
$data['user_id'] = $this->_get('user_id');
$data['content'] = $this->_get('content');
M('liuyan')->add($data);
这就插入数据库了


自己瞎搞了下,成功了,action和你的有点区别,别的差不多,还是谢谢你了。
明天估计老板又要来新任务了,thinkphp还得学啊,不懂的话我再来问吧。
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 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)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles