首页 > 代码库 > 简单的增删查骨架
简单的增删查骨架
首页显示
<!DOCTYPE html><html><head><style>ul{list-style-type:none;margin:0;padding:0;overflow:hidden;}li{float:left;}a:link,a:visited{display:block;width:120px;font-weight:bold;color:#FFFFFF;background-color:#bebebe;text-align:center;padding:4px;text-decoration:none;text-transform:uppercase;}a:hover,a:active{background-color:#cc0000;}</style></head><body><ul><li><a href="http://www.mamicode.com/{:U(‘Index/index‘)}">显示用户</a></li><li><a href="http://www.mamicode.com/{:U(‘Index/add‘)}">添加用户</a></li><li><a href="http://www.mamicode.com/{:U(‘Index/del‘)}">删除用户</a></li><li><a href="http://www.mamicode.com/#about">超级用户</a></li></ul><br><foreach name="div" item="vo"><div style=border-style:outset> 用户:{$vo.username}</div><br> </foreach></body></html>
添加页
<!DOCTYPE html><html><head><style>ul{list-style-type:none;margin:0;padding:0;overflow:hidden;}li{float:left;}a:link,a:visited{display:block;width:120px;font-weight:bold;color:#FFFFFF;background-color:#bebebe;text-align:center;padding:4px;text-decoration:none;text-transform:uppercase;}a:hover,a:active{background-color:#cc0000;}</style></head><body><ul><li><a href="http://www.mamicode.com/{:U(‘Index/index‘)}">显示用户</a></li><li><a href="http://www.mamicode.com/{:U(‘Index/add‘)}">添加用户</a></li><li><a href="http://www.mamicode.com/{:U(‘Index/del‘)}">删除用户</a></li><li><a href="http://www.mamicode.com/#about">超级用户</a></li></ul><br><form action="{:U(‘Index/addadd‘)}" method="post">用户名: <input type="text" name="name"><br><br>密码: <input type="text" name="password"><br><br><input type="submit"></form></body></html>
删除页
<!DOCTYPE html><html><head><style>ul{list-style-type:none;margin:0;padding:0;overflow:hidden;}li{float:left;}a:link,a:visited{display:block;width:120px;font-weight:bold;color:#FFFFFF;background-color:#bebebe;text-align:center;padding:4px;text-decoration:none;text-transform:uppercase;}a:hover,a:active{background-color:#cc0000;}</style></head><body><ul><li><a href="http://www.mamicode.com/{:U(‘Index/index‘)}">显示用户</a></li><li><a href="http://www.mamicode.com/{:U(‘Index/add‘)}">添加用户</a></li><li><a href="http://www.mamicode.com/{:U(‘Index/del‘)}">删除用户</a></li><li><a href="http://www.mamicode.com/#about">超级用户</a></li></ul><br><foreach name="div" item="vo"><div style=border-style:outset> 用户:{$vo.username} <a href="http://www.mamicode.com/{:U(‘Index/deldel‘,array(‘username‘=>$vo[‘username‘]))}">删除此项</a></div><br> </foreach></body></html>
控制器
<?php// 本类由系统自动生成,仅供测试用途class IndexAction extends Action { //显示用户 public function index(){ header("Content-Type:text/html; charset=utf-8");$User = M("user"); // 实例化模型类 $data = $User->select(); $this->assign(‘div‘,$data); $this->display(); } public function add(){ $this->display(‘tpl/add‘); }public function addadd(){$data["username"] = $_POST[‘name‘];//接收用户名$data["encryptedPassword"] = I(‘password‘,‘‘,‘md5‘);$data["creationDate"]= time();$data["modificationDate"]= time();$User = M(‘user‘);$User->add($data);$t = time();//$User = D("User");if($vo=$User->create()){ //if($User->add()){//$this->success(‘添加用户成功‘);//}else{//$this->error(‘添加用户失败‘);//}//}else{//$this->error($User->getError());//}echo ‘Now: ‘. date(‘Y-m-d‘) ."\n";dump($data);$this->redirect(‘Index/add‘); } public function del(){ header("Content-Type:text/html; charset=utf-8");$User = M("user"); // 实例化模型类 $data = $User->select(); $this->assign(‘div‘,$data); $this->display(‘tpl/del‘); } public function deldel(){ $username = I(‘username‘);//接收id$del = M(‘user‘);$del->where("username = ‘$username‘")->delete();//echo ‘删除成功!‘;dump($username);dump($del);$this->redirect(‘Index/del‘); }}
设置器
<?phpreturn array( //‘配置项‘=>‘配置值‘ //‘USERNAME‘=>‘admin‘, //赋值 //数据库配置信息 ‘DB_TYPE‘ => ‘mysql‘, // 数据库类型 ‘DB_HOST‘ => ‘localhost‘, // 服务器地址 ‘DB_NAME‘ => ‘openfire‘, // 数据库名 ‘DB_USER‘ => ‘root‘, // 用户名 ‘DB_PWD‘ => ‘root‘, // 密码 ‘DB_PORT‘ => 3306, // 端口 ‘DB_PREFIX‘ => ‘of‘, // 数据库表前缀 //其他项目配置参数 // ...);?>
简单的增删查骨架
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。