CakePHP将数据插入数据库不会保存

时间:2015-11-15 06:38:06

标签: php cakephp

我现在正在练习cakephp,但我的输入无法保存到我的数据库中。这是我的功能添加代码:

public function add(){
        $this->layout = 'default';
        if ($this->request->is('post')) {
            if ($this->Applicant->save($this->request->data)) {
                $this->Session->setFlash('Your account has been saved.');
                return $this->redirect(array('action' => 'index'));
            }
            $this->Session->setFlash('Unable to add account!.');
        }

    }

我需要帮助。

0 个答案:

没有答案