データがcakephpのデータベースに格納されていません。データがcakephpのデータベースに保存されていません
if ($this->request->is('post')) {
$this->Reg->create('User');
// pr($this->Reg->save($this->request->data['user']['firstname']));
if ($this->Reg->save($this->request->data)) {
$this->Flash->set("The Topic has been created!");
$this->redirect(array('action' => 'Reg'));
} else {
$this->Flash->set("The Topic has not been created!");
}
}
}
$ this-> Reg-> validationErrorsを印刷してください。それ以外の部分? –