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

📄 file_sum.php

📁 phpcms网站管理系统  很不错的 有需要的就下载看看八 
💻 PHP
字号:
<?php include admintpl('header'); ?>
<body>
<br />
<?php echo $attmenu; ?>
<br />
<table width="400" border="0" align="center" cellpadding="2" cellspacing="1" class="tableborder">
  <tr><th colspan="3"><?php echo $headtitle; ?></tr>
  <tr align="center" >
    <td class="tablerowhighlight">文件类型</td>
    <td class="tablerowhighlight">个数</td>
    <td class="tablerowhighlight">管理操作</td>
  </tr>
  <?php 
 if($atts) 
 { 
   foreach($atts as $id=>$att)
   { 
  
  ?> 
  <tr onMouseOut="this.style.backgroundColor='#F1F3F5'" onMouseOver="this.style.backgroundColor='#BFDFFF'" bgcolor="#F1F3F5">
    <td align="center"><?php echo strtoupper($att['filetype']); ?></td>
    <td><?php echo $att['num']; ?>个</td>
    <td align="center">
	<a href="#" onclick="self.location.href='?mod=phpcms&file=file&action=admin&channelid=2&filetype=<?php echo $att['filetype']; ?>';">查看</a>
	</td>
  </tr>
  <?php 
  	}
  }
  else
  { 
  ?>
  <tr>
    <th colspan="3">暂无附件</th>
  </tr>
  <?php 
    }
  ?>
</table>

⌨️ 快捷键说明

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