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

📄 url.php

📁 相关软件: ·帝国网站管理系统(Ecms) v3.5 繁体版 ·搜索更多与"帝国网站管理系统(Ecms) "相关的软件 注意事项: ·注意:本站软件一律只用鼠标左键打开
💻 PHP
字号:
<?
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/config.php");
include("../../class/functions.php");
include("../../class/com_functions.php");
$link=db_connect();
$empire=new mysqlquery();
//验证用户
$logininid=$_COOKIE['enewsloginuserid'];
$loginin=$_COOKIE['enewsloginusername'];
$loginrnd=$_COOKIE['enewsloginrnd'];
$loginlevel=$_COOKIE['enewsloginlevel'];
$editor=1;
is_login($logininid,$loginin,$loginrnd);
//验证权限
CheckLevel($logininid,$loginin,$classid,"downurl");
$enews=$_POST['enews'];
if(empty($enews))
{$enews=$_GET['enews'];}
//增加前缀
if($enews=="AddDownurl")
{
AddDownurl($_POST,$logininid,$loginin);
	}
//修改前缀
elseif($enews=="EditDownurl")
{
EditDownurl($_POST,$logininid,$loginin);
	}
//删除前缀
elseif($enews=="DelDownurl")
{
	$urlid=$_GET['urlid'];
	DelDownurl($urlid,$logininid,$loginin);
	}
	else
	{}
$sql=$empire->query("select urlid,urlname,url from phome_enewsdownurlqz order by urlid desc");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>下载地址前缀管理</title>
<link href="../../data/images/css.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
  <tr>
    <td>位置:其他管理 -&gt; 下载地址前缀管理</td>
  </tr>
</table>
<form name="form1" method="post" action="url.php">
  <input type=hidden name=enews value=AddDownurl>
  <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
    <tr>
      <td height="25" class="header"><strong><font color="#FFFFFF">增加下载地址前缀:</font></strong></td>
    </tr>
    <tr> 
      <td height="25" bgcolor="#FFFFFF"> 前缀名称: 
        <input name="urlname" type="text" id="urlname">
        前缀地址: 
        <input name="url" type="text" id="url" value="http://" size="50"> 
        <input type="submit" name="Submit" value="增加">
        <input type="reset" name="Submit2" value="重置"></td>
    </tr>
  </table>
</form>
<table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  <tr class="header"> 
    <td width="70%" height="25"><font color="#FFFFFF"><strong>下载地址前缀管理:</strong></font></td>
    <td width="30%" height="25"><div align="center"><font color="#FFFFFF"><strong>操作</strong></font></div></td>
  </tr>
  <?
  while($r=$empire->fetch($sql))
  {
  ?>
  <form name=form2 method=post action=url.php>
  <input type=hidden name=enews value=EditDownurl>
  <input type=hidden name=urlid value=<?=$r[urlid]?>>
  <tr bgcolor="#FFFFFF"> 
      <td height="25">前缀名称: 
        <input name="urlname" type="text" id="urlname" value="<?=$r[urlname]?>">
        前缀地址: 
        <input name="url" type="text" id="url" value="<?=$r[url]?>" size="30">
    </td>
    <td height="25"><div align="center">
          <input type="submit" name="Submit3" value="修改">&nbsp;
          <input type="button" name="Submit4" value="删除" onclick="self.location.href='url.php?enews=DelDownurl&urlid=<?=$r[urlid]?>';">
        </div></td>
  </tr>
  </form>
  <?
  }
  db_close();
  $empire=null;
  ?>
</table>
</body>
</html>

⌨️ 快捷键说明

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