标签:
这段代码看不懂。-《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());
}
}
}
标签:
原文地址:http://www.cnblogs.com/afra/p/5004838.html