search
HomeBackend DevelopmentPHP TutorialPlease help me with a simple question about TP2.0. I can't find any information online. Thank you!

I have been working on a tp2.0 website developed by the company in 2011 these days. In fact, I am relatively proficient in tp, but that refers to version 3.2. After I looked at the company website code, I felt sad. I found that I don’t even know how to do basic additions, deletions, modifications, and checks. I’ll post the source code and pictures and ask someone to help me figure out what I wrote wrong

Updated again, took screenshots of my website, the additions, deletions, modifications written by the developer, take a look at the bottom. Still not solved, does anyone have a version 2.0 project? Post it and take a look

First of all this is my add method code:
public function add(){
if(isPost){

<code>$model=M('Bcast');
$data['author']=$_POST['author'];
$data['title']=$_POST['title'];
$data['desc']=$_POST['desc'];
$data['url']=$_POST['url'];
$data['image']=$_POST['image'];
$model->data($data)->add();
$this->display();</code>

}
}
Such a simple piece of code killed me in version 2.0

1: I don’t know where to put $this->display();; after 3.2, I can write this else after not post, but I tried this version, and it can’t be displayed at all

Two: After I added, I originally planned to add success successfully, but after I added it, I clicked on the page and found that it directly showed success, without giving me a chance to fill in the form.

Okay, now let’s talk about the form

The above is written in my form. I created a page called BcastAction.class.php, and then created a new method in it. The inheritance is also written the same as other actions. The screenshot of the analysis is as follows

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

That’s all, I click
Submit

After

, it cannot be inserted into my Bcast table at all, and the fields are completely corresponding.

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

Masters, where did I go wrong with this question?

I tried to print, but as long as I print, the page will be the printed thing. I can't print it after submitting. If I don't write the display, I can't see the page at all

Thanks for the advice!

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

This should be added, it’s so damned written like this, I can’t understand it, it’s obviously assigning the category to the page, but I’m sure it was added this way, because I saw the link in the lower left corner

So I found another method that is more like inserting information, but what puzzles me is, why doesn’t it have a display? But I really can’t find this link

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

There is no link here, so there is no need to write a display? There is a link in add, so it must be displayed, but why does the add method not include any added code at all?
It’s so confusing to me

Reply content:

I have been working on a tp2.0 website developed by the company in 2011 these days. In fact, I am relatively proficient in tp, but that refers to version 3.2. After I looked at the company website code, I felt sad. I found that I don’t even know how to do basic additions, deletions, modifications and checks. I’ll post the source code and pictures and ask someone to help me figure out what I wrote wrong

Updated again, took screenshots of my website, the additions, deletions, modifications written by the developer, take a look at the bottom. Still not solved, does anyone have a version 2.0 project? Post it and take a look

First of all this is my add method code:
public function add(){
if(isPost){

<code>$model=M('Bcast');
$data['author']=$_POST['author'];
$data['title']=$_POST['title'];
$data['desc']=$_POST['desc'];
$data['url']=$_POST['url'];
$data['image']=$_POST['image'];
$model->data($data)->add();
$this->display();</code>

}
}
Such a simple piece of code killed me in version 2.0

1: I don’t know where to put $this->display();; after 3.2, I can write this else after not post, but I tried this version, and it can’t be displayed at all

Two: After I added, I originally planned to add success successfully, but after I added it, I clicked on the page and found that it directly showed success, without giving me a chance to fill in the form.

Okay, now let’s talk about the form

The above is written in my form. I created a page called BcastAction.class.php, and then created a new method in it. The inheritance is also written the same as other actions. The screenshot of the analysis is as follows

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

That’s all, I click
Submit

After

, it cannot be inserted into my Bcast table at all, and the fields are completely corresponding.

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

Masters, where did I go wrong with this question?

I tried to print, but as long as I print, the page will be the printed thing. I can't print it after submitting. If I don't write the display, I can't see the page at all

Thanks for the advice!

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

这个应该是添加,写成这样真是见鬼了,看不明白,这明显就是把分类assign到页面了,但我确定添加时是这个方法,因为我看左下角链接了

所以我找了另一个更像插入信息的方法,但让我疑惑的是,他咋没有display呢?不过我确实找不到这链接

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

他这个没链接,所以不需要写display吗?add有链接所以肯定要display的,可那add方法为什么压根没一句添加的代码啊?
费解死我了

我感觉你可以去翻翻thinkphp2.0的手册看看

<code>function add_info()
    {
        if(IS_POST)
        {
            $db= M();
            $db->create();
            $db->add();
            $this->success('添加成功',U('index'));
        }else{
            $this->display();
        }
    }</code>

如何,能否解决?

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

回楼上的,我就这么写的,这是在服务器上,没安装编辑器

链接那会,是照着原来网站写的

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

dislay的地方放对的话,蹦的页面是正常的

1.首先判断控制器方法是否接受到数据,可以echo或者var_dump看结果;
2.如果add方法不行,可以用原生的sql语句试试。

public function add(){

<code>echo '<pre class="brush:php;toolbar:false">';
var_dump($_POST);
die();
if(isPost){

    $model=M('Bcast');
    $data['author']=$_POST['author'];
    $data['title']=$_POST['title'];
    $data['desc']=$_POST['desc'];
    $data['url']=$_POST['url'];
    $data['image']=$_POST['image'];
       echo '<pre class="brush:php;toolbar:false">';
        var_dump($data);
        die();
    $model->data($data)->add();
    $this->display();
}

}
上面你调两次试试
浏览器开f12,看看network,的返回值
你说插入了,然后字段都是空。为什么呢?这个明显就是你执行的add语句,没字段,或者字段被过滤,直接生成一条默认值的数组。

Please help me with a simple question about TP2.0. I can't find any information online. Thank you!

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
thinkphp是不是国产框架thinkphp是不是国产框架Sep 26, 2022 pm 05:11 PM

thinkphp是国产框架。ThinkPHP是一个快速、兼容而且简单的轻量级国产PHP开发框架,是为了简化企业级应用开发和敏捷WEB应用开发而诞生的。ThinkPHP从诞生以来一直秉承简洁实用的设计原则,在保持出色的性能和至简的代码的同时,也注重易用性。

一起聊聊thinkphp6使用think-queue实现普通队列和延迟队列一起聊聊thinkphp6使用think-queue实现普通队列和延迟队列Apr 20, 2022 pm 01:07 PM

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了关于使用think-queue来实现普通队列和延迟队列的相关内容,think-queue是thinkphp官方提供的一个消息队列服务,下面一起来看一下,希望对大家有帮助。

thinkphp的mvc分别指什么thinkphp的mvc分别指什么Jun 21, 2022 am 11:11 AM

thinkphp基于的mvc分别是指:1、m是model的缩写,表示模型,用于数据处理;2、v是view的缩写,表示视图,由View类和模板文件组成;3、c是controller的缩写,表示控制器,用于逻辑处理。mvc设计模式是一种编程思想,是一种将应用程序的逻辑层和表现层进行分离的方法。

实例详解thinkphp6使用jwt认证实例详解thinkphp6使用jwt认证Jun 24, 2022 pm 12:57 PM

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了使用jwt认证的问题,下面一起来看一下,希望对大家有帮助。

thinkphp扩展插件有哪些thinkphp扩展插件有哪些Jun 13, 2022 pm 05:45 PM

thinkphp扩展有:1、think-migration,是一种数据库迁移工具;2、think-orm,是一种ORM类库扩展;3、think-oracle,是一种Oracle驱动扩展;4、think-mongo,一种MongoDb扩展;5、think-soar,一种SQL语句优化扩展;6、porter,一种数据库管理工具;7、tp-jwt-auth,一个jwt身份验证扩展包。

thinkphp 怎么查询库是否存在thinkphp 怎么查询库是否存在Dec 05, 2022 am 09:40 AM

thinkphp查询库是否存在的方法:1、打开相应的tp文件;2、通过“ $isTable=db()->query('SHOW TABLES LIKE '."'".$data['table_name']."'");if($isTable){...}else{...}”方式验证表是否存在即可。

一文教你ThinkPHP使用think-queue实现redis消息队列一文教你ThinkPHP使用think-queue实现redis消息队列Jun 28, 2022 pm 03:33 PM

本篇文章给大家带来了关于ThinkPHP的相关知识,其中主要整理了使用think-queue实现redis消息队列的相关问题,下面一起来看一下,希望对大家有帮助。

thinkphp3.2怎么关闭调试模式thinkphp3.2怎么关闭调试模式Apr 25, 2022 am 10:13 AM

在thinkphp3.2中,可以利用define关闭调试模式,该标签用于变量和常量的定义,将入口文件中定义调试模式设为FALSE即可,语法为“define('APP_DEBUG', false);”;开启调试模式将参数值设置为true即可。

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

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.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version