手册上面的方法是
$up->create();
$up->add(); 然后就不用自己一个一个来写子段了。
但是如果我表单里只有两个值,但是数据库里面有4个字段,那这个方法怎么知道我表单的这两值是插入到那两个字段呢。
我的表单写法
<div class="user"> {$note} <hr> <form action='__APP__/index.php/u/upadmin' method='post'> <table> <caption>添加管理员名称</caption> <tr> <th>用户</th> <td><input type='text' name='user' maxlength='10'></td> </tr> <tr> <th>密码</th> <td><input type='text' name='pwd' maxlength='10'/></td> </tr> <tr> <td colspan='2'> <input type='submit' /> <input type='reset' /> </td> </tr> </table> </form> </div>
$data['aname']=$_POST['user']; $data['apwd']=md5($_POST['pwd']); $data['bak']=$_POST['pwd']; if($_POST['user']==''){ $this->error('请输入用户名'); exit(); } if($_POST['pwd']==''){ $this->error('密码没有输入,请认真检查'); exit(); } $count=$upadmin->add($data);
这个是数据库的字段
呵呵,你只看到简单的 $up->create(); 一下
却没有看到前期的准备工作
呵呵,你只看到简单的 $up->create(); 一下
却没有看到前期的准备工作
恩,明白了,谢谢