📄 listuser.php
字号:
<?php
//====================================================
// FileName:listUser.php
// Summary: 用户列表程序
// Author: ice_berg16(寻梦的稻草人)
// CreateTime: 2004-10-24
// LastModifed:2004-10-24
// copyright (c)2004 ice_berg16@163.com
//====================================================
require_once("login.php");
require_once("../IBinit.php");
$user = new user($db);
$tpl = new SmartTemplate("admin/listUser.htm");
//用户列表
$userList = $user->listUser();
$tpl->assign("userList", $userList);
$tpl->assign("queryTime", $db->getQueryTimes());
$tpl->assign("executeTime", $timer->getExecuteTime());
$tpl->output();
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -