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

📄 listfile.php

📁 帝国CMS,功能全面的CMS源码,下载试用下
💻 PHP
字号:
<?php
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/config.php");
include("../../class/class.php");
include("../../class/functions.php");
include "../".LoadLang("pub/fun.php");
$link=db_connect();
$empire=new mysqlquery();
//验证用户
$logininid=getcvar('loginuserid');
$loginin=getcvar('loginusername');
$loginrnd=getcvar('loginrnd');
$loginlevel=getcvar('loginlevel');
$editor=1;
is_login($logininid,$loginin,$loginrnd);
//验证权限
CheckLevel($logininid,$loginin,$classid,"file");
//类别id
$classid=(int)$_GET['classid'];
$page=(int)$_GET['page'];
$start=(int)$_GET['start'];
$line=20;//每页显示条数
$page_line=12;//每页显示链接数
if(empty($page))
{$page=0;}
if(empty($start))
{$start=0;}
$offset=$start+$page*$line;//总偏移量
$add="";
//关键字
$keyboard=addslashes(stripSlashes($_GET['keyboard']));
if(!empty($keyboard))
{
	$show=$_GET['show'];
	//搜索全部
	if($show==0)
	{
		$add.=" and (filename like '%$keyboard%' or no like '%$keyboard%' or adduser like '%$keyboard%')";
	}
	//搜索文件名
	elseif($show==1)
	{
		$add.=" and filename like '%$keyboard%'";
	}
	//搜索编号
	elseif($show==2)
	{
		$add.=" and no like '%$keyboard%'";
	}
	//搜索上传者
	else
	{
		$add.=" and adduser like '%$keyboard%'";
	}
}
$type=$_GET['type'];
//其他附件
if($type!=9)
{$add.=" and type='$type'";}
if($type==0)
{$select0=" selected";}
elseif($type==1)
{$select1=" selected";}
elseif($type==2)
{$select2=" selected";}
elseif($type==3)
{$select3=" selected";}
else
{$select9=" selected";}
//栏目
if($classid)
{
	$add.=" and classid='$classid'";
}
$search="&classid=$classid&type=$type&show=$show&keyboard=$keyboard";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile where 1=1".$add;
$num=$empire->gettotal($totalquery);//取得总条数
$query="select * from {$dbtbpre}enewsfile where 1=1".$add;
$query=$query." order by fileid desc limit $offset,$line";
$sql=$empire->query($query);
$returnpage=page1($num,$line,$page_line,$start,$page,$search);
//风格
$loginadminstyleid=(int)getcvar('loginadminstyleid');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
<title>管理附件</title>
<script>
function CheckAll(form)
  {
  for (var i=0;i<form.elements.length;i++)
    {
    var e = form.elements[i];
    if (e.name != 'chkall')
       e.checked = form.chkall.checked;
    }
  }
</script>
</head>

<body>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="0">
  <tr>
    <td>位置:<a href="ListFile.php?type=9">管理附件(数据式)</a>&nbsp;&nbsp;(<a href=FilePath.php>目录式管理附件</a>)</td>
  </tr>
</table>
<br>
  
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="0">
  <form name="form2" method="get" action="ListFile.php">
    <input type=hidden name=classid value="<?=$classid?>">
    <tr> 
      <td width="82%">搜索: <select name="type" id="select">
          <option value="9">所有类别</option>
          <option value="1"<?=$select1?>>图片</option>
          <option value="2"<?=$select2?>>Flash文件</option>
          <option value="3"<?=$select3?>>多媒体文件</option>
          <option value="0"<?=$select0?>>其他附件</option>
        </select> <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>"> 
        <input name="show" type="radio" value="0">
        不限 
        <input type="radio" name="show" value="1">
        文件名 
        <input name="show" type="radio" value="2" checked>
        编号 
        <input type="radio" name="show" value="3">
        上传者 
        <input type="submit" name="Submit2" value="搜索"> </td>
      <td width="18%"><div align="center">[<a href="../enews.php?enews=DelFreeFile" onclick="return confirm('确认要操作?');">清理失效附件</a>]</div></td>
    </tr>
  </form>
</table>
<form name="form1" method="post" action="../enews.php" onsubmit="return confirm('确认要删除?');">
  <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
    <tr class="header"> 
      <td width="5%" height="25"><div align="center">ID</div></td>
      <td width="29%" height="25"><div align="center">文件名</div></td>
      <td width="10%" height="25"><div align="center">增加者</div></td>
      <td width="9%"><div align="center">文件大小</div></td>
      <td width="17%" height="25"><div align="center">增加时间</div></td>
      <td width="11%" height="25"><div align="center">操作</div></td>
    </tr>
    <?
	while($r=$empire->fetch($sql))
	{
		 //MB
  if($r[filesize]>=1024*1024)
  {
  $filesize=number_format($r[filesize]/(1024*1024),2,'.','')."&nbsp;MB";
  }
  //KB
  elseif($r[filesize]>=1024)
  {
  $filesize=number_format($r[filesize]/1024,2,'.','')."&nbsp;KB";
  }
  else
  {
  $filesize=$r[filesize]."&nbsp;Bytes";
  }
		 //按类别分
		if($r[classid])
			{
	$path1=$public_r[fileurl].$class_r[$r[classid]][classpath]."/".$r[path]."/".$r[filename];
            }
        else
			{
	$path1=$public_r[fileurl]."p/".$r[path]."/".$r[filename];
            }
			//引用
			$thisfileid=$r['fileid'];
			if($r['id'])
			{
			$thisfileid="<b><a href='../../public/InfoUrl?classid=$r[classid]&id=$r[id]' target=_blank>".$r[fileid]."</a></b>";
			}
	?>
    <tr bgcolor="#FFFFFF" id=file<?=$r[fileid]?>> 
      <td height="25"><div align="center"> 
          <?=$thisfileid?>
        </div></td>
      <td height="25"><div align="center"> 
          <?=$r[no]?>
          <br>
          <a href=<?=$path1?> target=_blank>
          <?=$r[filename]?>
          </a> </div></td>
      <td height="25"><div align="center"> 
          <?=$r[adduser]?>
        </div></td>
      <td><div align="center"> 
          <?=$filesize?>
        </div></td>
      <td height="25"><div align="center"> 
          <?=$r[filetime]?>
        </div></td>
      <td height="25"><div align="center">[<a href="../enews.php?enews=DelFile&fileid=<?=$r[fileid]?>" onclick="return confirm('您是否要删除?');">删除</a> 
          <input name="fileid[]" type="checkbox" id="fileid[]" value="<?=$r[fileid]?>" onclick="if(this.checked){file<?=$r[fileid]?>.style.backgroundColor='#DBEAF5';}else{file<?=$r[fileid]?>.style.backgroundColor='#ffffff';}">
          ]</div></td>
    </tr>
    <?
	}
	?>
    <tr bgcolor="#FFFFFF"> 
      <td height="25" colspan="6"> 
        <?=$returnpage?>
        &nbsp;&nbsp; <input type="submit" name="Submit" value="批量删除"> <input name="enews" type="hidden" id="enews" value="DelFile_all"> 
        &nbsp;
        <input type=checkbox name=chkall value=on onClick=CheckAll(this.form)>
        选中全部</td>
    </tr>
    <tr bgcolor="#FFFFFF">
      <td height="25" colspan="6">如果ID是粗体,表示有信息引用,点击ID即可查看信息页面</td>
    </tr>
  </table>
</form>
</body>
</html>
<?
db_close();
$empire=null;
?>

⌨️ 快捷键说明

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