thinkphp留言板如何写?
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();}
在模板中
用户名:{$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();}
在模板中
用户名:{$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();}
在模板中
用户名:{$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还得学啊,不懂的话我再来问吧。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

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,

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 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...

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

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�...

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

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