【发布时间】:2011-08-23 00:13:04
【问题描述】:
我的错误代码是:
注意:未定义变量:form in c:\AppServ\www\applogic\app\views\users\index.ctp 在第 1 行
致命错误:在非对象上调用成员函数 create() c:\AppServ\www\applogic\app\views\users\index.ctp 在第 1 行))) (index.ctp)
<?php echo $form->create(null, array('action' => 'index'));?>
<fieldset>
<legend>Enter Your Name</legend>
<?php echo $form->input('name'); ?>
</fieldset>
<?php echo $form->end('Go');?>
(users_controller.php)
<?php
class UsersController extends AppController {
var $name = 'Users';
var $uses = array();
function index() {
if (!empty($this->data)) {
//data posted
echo $this->data['name'];
$this->autoRender = false;
}
}
}
?>
【问题讨论】:
标签: cakephp cakephp-1.3 cakephp-1.2