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->button是 CakePHP 1.2 的语法,$this->Form是 1.3 以后的。

于 2012-12-11T01:06:20.143 回答