批改狀態(tài):未批改
老師批語:
控制器代碼
<?php
namespace controller;
class AdminController
{
public $view;
public $model;
public function __construct($model,$view)
{
$this->model = $model;
$this->view = $view;
}
public function index()
{
$admin = $this->model->select('admin',['name','id']);
return $this->view->render('admins/index',['page'=>1,'admin'=>$admin]);
}
}
視圖代碼
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<table border="1px">
<caption>管理員信息表</caption>
<thead>
<tr>
<th>編號(hào)</th>
<th>姓名</th>
<td>操作</td>
</tr>
</thead>
<tbody>
<?php foreach($admin as $value){?>
<tr>
<td><?=$value['id']?></td>
<td><?=$value['name']?></td>
<td>
<button>編輯</button>
<button>刪除</button></td>
</tr>
<?php }?>
</tbody>
</table>
</body>
</html>
效果圖
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號(hào)
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號(hào)