📄 index.php
字号:
<?php
include_once( "inc/conn.php" );
include_once( "inc/auth.php" );
include_once( "inc/utility_all.php" );
$FILE_SORT = $_REQUEST['FILE_SORT'];
$cur_page = $_REQUEST['cur_page'];
$SORT_ID = $_REQUEST['SORT_ID'];
$SAVE_LOG = $_REQUEST['SAVE_LOG'];
if ( $SAVE_LOG != "" )
{
savesysoplog( $SAVE_LOG, "4", "file_content", "" );
}
if ( $SORT_ID == "" )
{
$SORT_ID = 0;
}
if ( $cur_page == "" )
{
$cur_page = 1;
}
if ( $FILE_SORT == 1 )
{
$TITLE = "公共文件柜";
}
else
{
$TITLE = "个人文件柜";
}
echo "<title>";
echo $TITLE;
echo "</title>\r\n<frameset rows=\"55,*\" cols=\"*\" frameborder=\"NO\" border=\"0\" framespacing=\"0\" id=\"frameflieedit\">\r\n <frame name=\"filetop\" scrolling=\"no\" noresize src=\"file_new/filetop.php?FILE_SORT=";
echo $FILE_SORT;
echo "\" frameborder=\"0\" id='frametop'>\r\n <frameset rows=\"*\" cols=\"160,8,*\" frameborder=\"YES\" border=\"0\" framespacing=\"1\" id=\"framesort\">\r\n <frame name=\"file_tree\" scrolling=\"yes\" src=\"file_new/fileleft.php?FILE_SORT=";
echo $FILE_SORT;
echo "\" frameborder=\"0\">\r\n\t <frame name=\"filemiddle\" scrolling=\"no\" src=\"file_new/filemiddle.php\" frameborder=\"0\">\r\n <frame name=\"file_main\" scrolling=\"auto\" src=\"file_new/filelist.php?FILE_SORT=";
echo $FILE_SORT;
echo "&SORT_ID=";
echo $SORT_ID;
echo "&cur_page=";
echo $cur_page;
echo "\" frameborder=\"0\">\r\n </frameset>\r\n</frameset><noframes></noframes>\r\n\r\n<!--<frameset rows=\"55,*\" cols=\"*\" frameborder=\"no\" border=\"0\" framespacing=\"0\" id=\"frame1\">\r\n <frame name=\"file_title\" scrolling=\"no\" noresize src=\"title.php?FILE_SORT=";
echo $FILE_SORT;
echo "\" frameborder=\"NO\">\r\n <frameset rows=\"*\" cols=\"210,*\" frameborder=\"no\" border=\"0\" framespacing=\"0\" id=\"frame2\">\r\n <frame name=\"file_tree\" scrolling=\"no\" src=\"tree.php?e=0&FILE_SORT=";
echo $FILE_SORT;
echo "\" frameborder=\"no\">\r\n <frame name=\"file_main\" scrolling=\"auto\" src=\"folder.php?FILE_SORT=";
echo $FILE_SORT;
echo "&SORT_ID=0\" frameborder=\"no\" >\r\n </frameset>\r\n</frameset> -->\r\n";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -