| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 | <?phpdefine('EmpireCMSAdmin','1');require("../../class/connect.php");require("../../class/db_sql.php");require("../../class/functions.php");require("../../member/class/user.php");require "../".LoadLang("pub/fun.php");$link=db_connect();$empire=new mysqlquery();$editor=1;//验证用户$lur=is_login();$logininid=$lur['userid'];$loginin=$lur['username'];$loginrnd=$lur['rnd'];$loginlevel=$lur['groupid'];$loginadminstyleid=$lur['adminstyleid'];//ehash$ecms_hashur=hReturnEcmsHashStrAll();//验证权限CheckLevel($logininid,$loginin,$classid,"ingroup");//增加会员内部组function AddInGroup($add,$userid,$username){	global $empire,$dbtbpre;	if(empty($add['gname']))	{		printerror('EmptyInGroup','history.go(-1)');	}	$add['gname']=hRepPostStr($add['gname'],1);	$add['myorder']=(int)$add['myorder'];	$sql=$empire->query("insert into {$dbtbpre}enewsingroup(gname,myorder) values('$add[gname]','$add[myorder]');");	//更新缓存	GetMemberLevel();	if($sql)	{		$gid=$empire->lastid();		insert_dolog("gid=$gid&gname=$add[gname]");//操作日志		printerror("AddInGroupSuccess","AddInGroup.php?enews=AddInGroup".hReturnEcmsHashStrHref2(0));	}	else	{		printerror("DbError","history.go(-1)");	}}//修改会员内部组function EditInGroup($add,$userid,$username){	global $empire,$dbtbpre;	$gid=intval($add['gid']);	if(empty($add['gname'])||!$gid)	{		printerror('EmptyInGroup','history.go(-1)');	}	$add['gname']=hRepPostStr($add['gname'],1);	$add['myorder']=(int)$add['myorder'];	$sql=$empire->query("update {$dbtbpre}enewsingroup set gname='$add[gname]',myorder='$add[myorder]' where gid='$gid'");	//更新缓存	GetMemberLevel();	if($sql)	{		insert_dolog("gid=$gid&gname=$add[gname]");//操作日志		printerror("EditInGroupSuccess","ListInGroup.php".hReturnEcmsHashStrHref2(1));	}	else	{		printerror("DbError","history.go(-1)");	}}//删除会员内部组function DelInGroup($add,$userid,$username){	global $empire,$dbtbpre;	$gid=intval($add['gid']);	if(!$gid)	{		printerror('EmptyInGroupid','history.go(-1)');	}	$r=$empire->fetch1("select gid,gname from {$dbtbpre}enewsingroup where gid='$gid'");	if(!$r['gid'])	{		printerror('EmptyInGroupid','history.go(-1)');	}	$sql=$empire->query("delete from {$dbtbpre}enewsingroup where gid='$gid'");	//更新缓存	GetMemberLevel();	if($sql)	{		insert_dolog("gid=$gid&gname=$r[gname]");//操作日志		printerror("DelInGroupSuccess","ListInGroup.php".hReturnEcmsHashStrHref2(1));	}	else	{		printerror("DbError","history.go(-1)");	}}$enews=$_POST['enews'];if(empty($enews)){$enews=$_GET['enews'];}if($enews){	hCheckEcmsRHash();}if($enews=="AddInGroup"){	AddInGroup($_POST,$logininid,$loginin);}elseif($enews=="EditInGroup"){	EditInGroup($_POST,$logininid,$loginin);}elseif($enews=="DelInGroup"){	DelInGroup($_GET,$logininid,$loginin);}$search=$ecms_hashur['ehref'];$page=(int)$_GET['page'];$page=RepPIntvar($page);$start=0;$line=16;//每页显示条数$page_line=25;//每页显示链接数$offset=$page*$line;//总偏移量$query="select * from {$dbtbpre}enewsingroup";$totalquery="select count(*) as total from {$dbtbpre}enewsingroup";$num=$empire->gettotal($totalquery);//取得总条数$query=$query." order by gid desc limit $offset,$line";$sql=$empire->query($query);$returnpage=page2($num,$line,$page_line,$start,$page,$search);?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css"><title>会员内部组</title></head><body><table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">  <tr>     <td width="50%" height="25">位置:<a href="ListInGroup.php<?=$ecms_hashur['whehref']?>">管理会员内部组</a></td>    <td><div align="right" class="emenubutton">        <input type="button" name="Submit5" value="增加会员内部组" onclick="self.location.href='AddInGroup.php?enews=AddInGroup<?=$ecms_hashur['ehref']?>';">      </div></td>  </tr></table><br><table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">  <tr class="header">     <td width="6%" height="25"> <div align="center">ID</div></td>    <td width="49%" height="25"> <div align="center">组名称</div></td>    <td width="24%"><div align="center">会员数</div></td>    <td width="21%" height="25"> <div align="center">操作</div></td>  </tr>  <?php  while($r=$empire->fetch($sql))  {  	$color="#ffffff";	$movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';	$membernum=$empire->gettotal("select count(*) as total from ".eReturnMemberTable()." where ".egetmf('ingid')."='$r[gid]'");  ?>  <tr bgcolor="<?=$color?>"<?=$movejs?>>     <td height="25"> <div align="center">         <?=$r[gid]?>      </div></td>    <td height="25"> <div align="center">         <?=$r[gname]?>      </div></td>    <td><div align="center"><a href="ListMember.php?sear=1&ingid=<?=$r['gid']?><?=$ecms_hashur['ehref']?>" target="_blank" title="点击查看列表"><?=$membernum?></a></div></td>    <td height="25"> <div align="center"> [<a href="AddInGroup.php?enews=EditInGroup&gid=<?=$r[gid]?><?=$ecms_hashur['ehref']?>">修改</a>] [<a href="ListInGroup.php?enews=DelInGroup&gid=<?=$r[gid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>  </tr>  <?  }  ?>  <tr bgcolor="#FFFFFF">     <td height="25" colspan="4">          <?=$returnpage?>    </td>  </tr></table></body></html><?db_close();$empire=null;?>
 |