thinkphp学习笔记(十)在model中完成自动验证前台的表单数据
index.html
usermodel.class.php
15||strlen($data)
autoaction.class.php
display(); } function add(){ //经过自定义模型 $user=d('user'); if ($user->create()) { if ($user->add()){ $this->success(注册成功); }else{ $this->error($user->geterror()); } }else{ $this->error($user->geterror()); } }}?>