You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.5 KiB
69 lines
1.5 KiB
<?php
|
|
require("../class/connect.php");
|
|
include("../class/db_sql.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
//关闭
|
|
if($public_r['addnews_ok'])
|
|
{
|
|
printerror("NotOpenCQInfo","",9);
|
|
}
|
|
$userid=(int)$_GET['userid'];
|
|
$username=RepPostStr($_GET['username'],1);
|
|
$rnd=RepPostStr($_GET['rnd'],1);
|
|
$ecms=RepPostStr($_GET['ecms'],1);
|
|
$classid=(int)$_GET['classid'];
|
|
$infoid=(int)$_GET['infoid'];
|
|
$filepass=RepPostStr($_GET['filepass'],1);
|
|
$type=RepPostStr($_GET['type'],1);
|
|
if(!$classid||!$filepass)
|
|
{
|
|
printerror("ErrorUrl","",9);
|
|
}
|
|
$pr=$empire->fetch1("select qaddtran,qaddtransize,qaddtranimgtype,qaddtranfile,qaddtranfilesize,qaddtranfiletype from {$dbtbpre}enewspublic limit 1");
|
|
if($type==1)
|
|
{
|
|
if(!$pr['qaddtran'])
|
|
{
|
|
printerror("CloseQTranPic","",9);
|
|
}
|
|
$filetype=$pr['qaddtranimgtype'];
|
|
$filesize=$pr['qaddtransize'];
|
|
$word="上传图片";
|
|
}
|
|
elseif($type==2)
|
|
{
|
|
if(!$pr['qaddtranfile'])
|
|
{
|
|
printerror("CloseQTranFile","",9);
|
|
}
|
|
$filetype="|.swf|";
|
|
$filesize=$pr['qaddtranfilesize'];
|
|
$word="上传FLASH";
|
|
}
|
|
else
|
|
{
|
|
if(!$pr['qaddtranfile'])
|
|
{
|
|
printerror("CloseQTranFile","",9);
|
|
}
|
|
$filetype=$pr['qaddtranfiletype'];
|
|
$filesize=$pr['qaddtranfilesize'];
|
|
$word="上传附件";
|
|
}
|
|
$filetype=substr($filetype,1,strlen($filetype));
|
|
$filetype=substr($filetype,0,strlen($filetype)-1);
|
|
$filetype=str_replace("|",",",$filetype);
|
|
if($ecms)
|
|
{
|
|
$enews="MHtmlareaTranPic";
|
|
}
|
|
else
|
|
{
|
|
$enews="MTranFile";
|
|
}
|
|
//导入模板
|
|
require(ECMS_PATH.'e/template/DoInfo/tran.php');
|
|
db_close();
|
|
$empire=null;
|
|
?>
|