7e47ce238b
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
//-------------------------------------------------------列出本目录文件
|
|
require "../../config.php";
|
|
include "../../../tmpl/config.php";
|
|
require THIS_FILE_ROOT."/include/function.php";
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
|
//-------------------------------
|
|
$pathdir="./";
|
|
$d=dir($pathdir);
|
|
$i=1;
|
|
$file_list="";
|
|
while($a=$d->read()){
|
|
if(is_file($pathdir.'/'.$a) && ($a!='.') && ($a!='..') && ($a!='index.php')){
|
|
$a=iconv("gb2312","utf-8",$a);
|
|
$file_list.="<a href='./".urlencode($a)."'>".$a."</a><br>";
|
|
}
|
|
}
|
|
$d->close();
|
|
$msg=$file_list;
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>xls</title>
|
|
<style>
|
|
BODY{
|
|
font-family:宋体;FONT-SIZE:12px;margin:0px;padding:0px;
|
|
}
|
|
a,a:link,a:visited,a:active {
|
|
text-decoration:none;COLOR: #0000ff;FONT-SIZE:12px;
|
|
}
|
|
a:hover {
|
|
TEXT-DECORATION: underline;COLOR: #aaaa9f;FONT-SIZE:12px;
|
|
}
|
|
body,input,td,select,div,li,ul,textarea,form {
|
|
font-family:宋体;
|
|
FONT-SIZE:12px;
|
|
}
|
|
.wrong{
|
|
color:#ff0000;font-weight:bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<br />
|
|
<table width="80%" border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#cccccc">
|
|
<tr>
|
|
<td align="center" bgcolor="#f0f0f0"><b>xls目录文件列表</b></td>
|
|
</tr>
|
|
<?php
|
|
if($msg){
|
|
echo "<tr><td align=\"left\" bgcolor=\"#ffffff\" valign=\"top\" style=\"line-height:150%;\">".$msg."</td></tr>";
|
|
}
|
|
?>
|
|
</table>
|
|
</body>
|
|
</html>
|