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

📄 loadoutbq.php

📁 不错的一个网站管理系统
💻 PHP
字号:
<?php
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/config.php");
include("../../class/functions.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,"bq");
$mess="<script>alert('请选择要导出的标签');window.close();</script>";
$bqid=(int)$_GET['bqid'];
if(empty($bqid))
{
	echo $mess;
	exit();
}
$r=$empire->fetch1("select bqid,bqname,bq from {$dbtbpre}enewsbq where bqid=$bqid");
if(empty($r['bqid']))
{
	echo $mess;
	exit();
}
$url="&nbsp;导出标签:".$r['bqname'];
db_close();
$empire=null;
//风格
$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">
<title>导出标签</title>
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
  <tr>
    <td height="25">位置:<?=$url?></td>
  </tr>
</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 height="25"><div align="center">导出标签 
          <input name="enews" type="hidden" id="enews" value="LoadOutBq">
          <input name="bqid" type="hidden" id="bqid" value="<?=$bqid?>">
        </div></td>
    </tr>
    <tr bgcolor="#FFFFFF"> 
      <td height="25"><table width="100%" border="0" cellspacing="1" cellpadding="3">
          <tr> 
            <td width="37%"><div align="right">标签名称:</div></td>
            <td width="63%" height="27"><b><? echo $r[bqname]."&nbsp;(".$r[bq].")";?></b></td>
          </tr>
          <tr> 
            <td height="27" colspan="2"> 
              <div align="center">标签函数内容(e/class/userfun.php):</div></td>
          </tr>
          <tr> 
            <td colspan="2"><div align="center">
                <textarea name="funvalue" cols="86" rows="16" id="funvalue"></textarea>
              </div></td>
          </tr>
        </table></td>
    </tr>
    <tr bgcolor="#FFFFFF">
      <td height="25"><div align="center">
          <input type="submit" name="Submit" value="马上导出">&nbsp;&nbsp;
          <input type="reset" name="Submit2" value="重置">
        </div></td>
    </tr>
  </table>
</form>
</body>
</html>

⌨️ 快捷键说明

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