#### 1.將POST數據插入數據庫
$Form = D('Form');
if($Form->create()) {
$result = $Form->add();
if($result) {
$this->success('數據添加成功!');
}else{
$this->error('數據添加錯誤!');
}
}else{
$this->error($Form->geterror());
}