thinkphp笔记-创建数据

这段代码看不懂。-《thinkphph3.2.3快速入门》

 

<?php
namespace Home\Controller;
use Think\Controller;
class FormController extends Controller{
public function insert(){
$Form = D('Form');
if($Form->create()) {
$result = $Form->add();
if($result) {
$this->success('数据添加成功!');
}else{
$this->error('数据添加错误!');
}
}else{
$this->error($Form->getError());
}
}
}

posted @ 2015-11-29 15:39  afraliuyd  阅读(166)  评论(1)    收藏  举报