ThinkPHP框架实现用户信息查询更新及删除功能示例
程序员文章站
2022-09-09 13:42:14
本文实例讲述了thinkphp框架实现用户信息查询更新及删除功能。分享给大家供大家参考,具体如下:
一 代码
1、配置文件
本文实例讲述了thinkphp框架实现用户信息查询更新及删除功能。分享给大家供大家参考,具体如下:
一 代码
1、配置文件
<?php return array( 'app_debug' => false, // 关闭调试模式 'db_type'=> 'mysql', // 数据库类型 'db_host'=> 'localhost', // 数据库服务器地址 'db_name'=>'db_database30', // 数据库名称 'db_user'=>'root', // 数据库用户名 'db_pwd'=>'root', // 数据库密码 'db_port'=>'3306', // 数据库端口 'db_prefix'=>'think_', // 数据表前缀 ); ?>
2、入口文件
<?php define('think_path', '../thinkphp'); //定义thinkphp框架路径(相对于入口文件) define('app_name', 'app'); //定义项目名称 define('app_path', './app'); //定义项目路径 require(think_path."/thinkphp.php"); //加载框架入口文件 app::run(); //实例化一个网站应用实例 ?>
3、控制器文件
<?php header("content-type:text/html; charset=utf-8"); //设置页面编码格式 class indexaction extends action{ public function index(){ $db = m('user'); // 实例化模型类,参数数据表名称,不包含前缀 $select = $db->order('id desc')->limit(10)->select(); $this->assign('select',$select); // 模板变量赋值 $this->display(); // 指定模板页 } public function update(){ $db = m('user'); // 实例化模型类,参数数据表名称,不包含前缀 $select = $db->where('id='.$_get['id'])->select(); $this->assign('select',$select); // 模板变量赋值 $this->display(update); // 指定模板页 if(isset($_post['id'])){ $data['user'] = $_post['user']; // 要修改的数据对象属性赋值 $data['pass'] = md5($_post['pass']); $data['address'] = $_post['address']; $result=$db->where('id='.$_post['id'])->save($data); // 根据条件保存修改的数据 if($result){ $this->redirect('index/index','', 2,'数据更新成功'); //页面重定向 } } } public function delete(){ $db = m('user'); // 实例化模型类,参数数据表名称,不包含前缀 $result=$db->where('id='.$_get['id'])->delete(); // 删除id为5的用户数据 if($result){ $this->redirect('index/index','', 2,'数据删除成功'); //页面重定向 } } } ?>
4、模板文件一
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>用户信息输出</title> <link href="__root__/public/css/style.css" rel="external nofollow" rel="external nofollow" rel="stylesheet" type="text/css" /> </head> <body> <table width="405" border="1" cellpadding="1" cellspacing="1" bgcolor="#99cc33" bordercolor="#ffffff"> <tr> <td colspan="4" bgcolor="#ffffff" class="title" align="center">用户信息</td> </tr> <tr class="title"> <td bgcolor="#ffffff" width="44">id</td> <td bgcolor="#ffffff" width="120">名称</td> <td bgcolor="#ffffff" width="111">地址</td> <td bgcolor="#ffffff" width="111">操作</td> </tr> <foreach name='select' item='user' > <tr class="content"> <td bgcolor="#ffffff">{$user.id}</td> <td bgcolor="#ffffff">{$user.user}</td> <td bgcolor="#ffffff">{$user.address}</td> <td bgcolor="#ffffff"><a href="__url__/update?id={$user.id}" rel="external nofollow" >更新</a>/<a href="__url__/delete?id={$user.id}" rel="external nofollow" >删除</a></td> </tr> </foreach> </table> </body> </html>
5、模板文件二
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>用户信息输出</title> <link href="__root__/public/css/style.css" rel="external nofollow" rel="external nofollow" rel="stylesheet" type="text/css" /> </head> <body> <form id="form2" name="form2" method="post" action="__url__/update"> <table width="405" border="1" cellpadding="1" cellspacing="1" bgcolor="#99cc33" bordercolor="#ffffff"> <tr> <td colspan="2" bgcolor="#ffffff" class="title" align="center">用户信息</td> </tr> <foreach name='select' item='user' > <tr class="content"> <td bgcolor="#ffffff" class="right" width="103">名称:</td> <td bgcolor="#ffffff" width="289"> <input type="hidden" name="id" id="hiddenfield" value="{$user.id}" /><input name="user" type="text" id="user" size="20" value="{$user.user}" /></td> </tr> <tr class="content"> <td bgcolor="#ffffff" class="right">密码:</td> <td bgcolor="#ffffff"><input name="pass" type="password" id="pass" size="20" value="{$user.pass}" /> </td> </tr> <tr class="content"> <td bgcolor="#ffffff" class="right"> 地址:</td> <td bgcolor="#ffffff"> <input name="address" type="text" id="address" size="30" value="{$user.address}" /> </td> </tr> <tr class="content"> <td bgcolor="#ffffff"> </td> <td bgcolor="#ffffff"><input type="submit" name="button" id="button" value="更新" /></td> </tr> </foreach> </table> </form> </body> </html>
二 运行结果
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
上一篇: Apple Watch运动表带展示方式获得设计专利
下一篇: 科学无法解释,每个人都会遇到的三件事