博客列表 >php之自撸框架

php之自撸框架

月光下,遗忘黑暗
月光下,遗忘黑暗原创
2021年05月29日 17:13:43734浏览

控制器代码

  1. <?php
  2. namespace controller;
  3. class AdminController
  4. {
  5. public $view;
  6. public $model;
  7. public function __construct($model,$view)
  8. {
  9. $this->model = $model;
  10. $this->view = $view;
  11. }
  12. public function index()
  13. {
  14. $admin = $this->model->select('admin',['name','id']);
  15. return $this->view->render('admins/index',['page'=>1,'admin'=>$admin]);
  16. }
  17. }

视图代码

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. </head>
  10. <body>
  11. <table border="1px">
  12. <caption>管理员信息表</caption>
  13. <thead>
  14. <tr>
  15. <th>编号</th>
  16. <th>姓名</th>
  17. <td>操作</td>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <?php foreach($admin as $value){?>
  22. <tr>
  23. <td><?=$value['id']?></td>
  24. <td><?=$value['name']?></td>
  25. <td>
  26. <button>编辑</button>
  27. <button>删除</button></td>
  28. </tr>
  29. <?php }?>
  30. </tbody>
  31. </table>
  32. </body>
  33. </html>

效果图

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议