我已经使用CakePHP表单助手构建了一个表单,我试图让它更改我的用户密码,这应该不是很难。但由于某些原因,当我提交表格时,它会在计划文本中提交。
$UsersPass = $this->Form->create('PasswordUpdate', array('id' => 'ChangePassword', 'url' => '/update_password'));
$UsersPass .= $this->Form->input('oldpassword', array('div' => false, 'type' => 'password', 'label' => 'Old Password'));
$UsersPass .= $this->Form->input('passwordnew', array('div' => false, 'type' => 'password', 'label' => 'New Password'));
$UsersPass .= $this->Form->input('passwordconfirm', array('div' => false, 'type' => 'password', 'label' => 'Confirm'))l
$UsersPass .= $this->Form->submit(' ', array('div' => false, 'type' => 'submit', 'class' => 'Button_DoneSubmit') );
echo UsersPass;
任何获取CakePHP以确保它不在计划文本中提交的方法?
感谢。