listuser.php
来自「套中小型企业网站建设」· PHP 代码 · 共 26 行
PHP
26 行
<?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 + =
减小字号Ctrl + -
显示快捷键?