0

フォームに関連しないボタンを登録ボタンのビューに配置して、ユーザーをコントローラーアクションに誘導しようとしていますが、error500の内部エラーが引き続き発生します。私がここで間違っていることについて何か考えはありますか?

<?php 
echo $this->Form->create('User');
echo $this->Session->flash();
echo $this->Form->input('username', array('label' => false, 'div' => false, 'class' => 'w-icon validate[required]'));
echo $this->Form->input('password', array('label' => false, 'div' => false, 'class' => 'w-icon validate[required]'));
echo $form->button('Register', array('type' => 'button', 'class' => 'button red tiny'));
echo $this->Form->submit('Login', array('class' => 'button blue tiny'));
echo $this->Form->end();
?>
4

1 に答える 1

2

$form->buttonCakePHP 1.2構文で$this->Formあり、1.3以降です。

于 2012-12-11T01:06:20.143 に答える