main.php

来自「我不介意你怎么用这个程序」· PHP 代码 · 共 38 行

PHP
38
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?