本文实例讲述了tp5框架的增删改查操作。分享给大家供大家参考,具体如下:
contr袁隆平给母亲写的一封信oller控制器写入的内容
public function index() { $list = db::table('ur')->lect(); return view('login',['list'=>$list]); } //增加页面 public function xian(){ return view('xian'); } //增加至波斯猫的歌词数据库 public func如何查学历tion inrt(){ $data = [ 'id'=>null, 'name'=>$_post['name'], 'age'=>$_post['age'], ]; $list = db::nam乡镇卫生院工作总结e('ur')->inrt($data); if($list){ echo "添加成功"; } } //删除数据库内容 public function del(){ $list = db::table('ur')->delete($_get['id']); if($list){ echo "删除成功"; } } //显示修改页面 public function gai(){ /* $list = $_get;*/ return view('gai'); } //修改数据库内容 public function upda(){ $list = db::name('ur')->where('id',$_post['id'])->update(['name'=>$_post['name'],'age'=>$_post['age']]); if($list){ echo '修改成功'; } }
这里是视图
修改的页面视图
<form action="{:url('login/upda')}" method="post"> name<input type="text" name="id" value="{$_get['id']}"> name<input type="text" name="name" value="{$_get['name']}"><br> age<input type="text" name="age" value="{$_get['age']}"><br> <input type="submit"></form>{$_get['id']} {$_get['name']} {$_get['age']}
这个代码就是用来取值的。
显示的页面视图
{foreach $list as $v}{$v.name}--{$v.age}<a href="{:url('login/del')}?id={$v.id}" rel="external nofollow" rel="external nofollow" >删除</a><a href="{:url('login/gai')}?id={$v.id}&name={$v.name}&age={$v.age}" rel="external nofollow" rel="external nofollow" >修改</a><br>{/foreach}<a href="{:url('login/xian')}" rel="external nofollow" rel="external nofollow" >添加</a>
显示的添加页面
{foreach $list as $v}{$v.name}--{$v.age}<a href="{:url('login/del')}?id={$v.id}" rel="external nofollow" rel="external nofollow" >删除</a><a href="{:url('login/gai')}?id={$v.id}&name={$v.name}&age={$v.age}" rel="external nofollow" rel="external nofollow" >修改</a>&庄周家贫lt;br>{/foreach}<a href="{:url('login/xian')}" rel="external nofollow" rel="external nofollow" >添加</a>
本文发布于:2023-04-08 07:58:18,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/2db14a15931a78e07105502befea2273.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:tp5框架的增删改查操作示例.doc
本文 PDF 下载地址:tp5框架的增删改查操作示例.pdf
留言与评论(共有 0 条评论) |