<?php
// 首页视图
class IndexAction extends Action{
public function index () {
$this->display(index);
}
//表单处理
public function tijiao () {
$data=array(
'name'=> I('username','',htmlspecialchars),
'nr' => I('content','',htmlspecialchars),
'time'=> time()
);
$id= M('wis')->data($data)->add();
echo $id;
}
}
?>
conf配置:
<?php
return array(
// 数据库连接
DB_TYPE => 'MYSQL',
DB_HOST => 'localhost',
DB_USER => 'root',
DB_PWD => 'chz268',
DB_NAME => 'thinkphp',
'TMPL_PARSE_STRING'=>ARRAY(
'__PUBLIC__'=>__ROOT__ . '/' .APP_NAME . '/TPL/PUBLIC/'
),
'tmpl_template_suffix'=> '.html',
);
?>
我数据库名thinkphp 表名:wis
为什么提交表单,老是显示提交失败。。。。
最佳答案