⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.php

📁 我不介意你怎么用这个程序
💻 PHP
字号:
<?php
include("fun_check.php");
include("../includes/fun_data.php");
include("../includes/inc_var.php");
DB($g_db_host, $g_db_name, $g_db_user, $g_db_password);
$db = new DBReader;
$db->execute("SELECT * FROM `".$g_db_prefix."user`");
$user = $db->count();
$db->execute("SELECT * FROM `".$g_db_prefix."style`");
$style = $db->count();
$db->execute("SELECT * FROM `".$g_db_prefix."head`");
$head = $db->count();
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="../includes/main.css">
<title>星雨留言板</title>
</head>

<body>
<table width="100%" border="0">
  <tr>
    <th>留言板信息</th>
  </tr>
  <tr>
    <td>共有注册用户 <font color="#0099FF"><strong><?php echo $user?></strong></font> 人。</td>
  </tr>
  <tr>
    <td>共有样式模板 <font color="#0099FF"><strong><?php echo $style?></strong></font> 个。</td>
  </tr>
  <tr>
    <td>共有头像模板 <font color="#0099FF"><strong><?php echo $head?></strong></font> 套。</td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -