📄 changestyle.php
字号:
<?php
require("../../class/connect.php");
include("../../class/config.php");
include("../../class/q_functions.php");
include("../../class/db_sql.php");
include "../".LoadLang("pub/fun.php");
include("../../class/user.php");
$link=db_connect();
$empire=new mysqlquery();
$editor=1;
$user=islogin();
$addr=$empire->fetch1("select spacestyleid from {$dbtbpre}enewsmemberadd where userid='$user[userid]' limit 1");
if(empty($addr[spacestyleid]))
{
$addr[spacestyleid]=$public_r['defspacestyleid'];
}
//分页
$page=(int)$_GET['page'];
$start=(int)$_GET['start'];
$line=16;//每页显示条数
$page_line=12;//每页显示链接数
$offset=$start+$page*$line;//总偏移量
$query="select styleid,stylename,stylepic,stylesay,isdefault from {$dbtbpre}enewsspacestyle where membergroup='' or (membergroup<>'' and membergroup like '%,".$user[groupid].",%')";
$totalquery="select count(*) as total from {$dbtbpre}enewsspacestyle where membergroup='' or (membergroup<>'' and membergroup like '%,".$user[groupid].",%')";
$num=$empire->gettotal($totalquery);//取得总条数
$query.=" order by styleid limit $offset,$line";
$returnpage=page1($num,$line,$page_line,$start,$page,$search);
$temp="<tr><td width='25%' bgcolor='ffffff' align=center><!--list.var1--></td><td width='25%' bgcolor='ffffff' align=center><!--list.var2--></td><td width='25%' bgcolor='ffffff' align=center><!--list.var3--></td><td width='25%' bgcolor='ffffff' align=center><!--list.var4--></td></tr>";
$header="<table width='100%' border='0' cellpadding='3' cellspacing='1' bgcolor='#DBEAF5' align='center'>";
$footer="<tr><td colspan='4' align=center>".$returnpage."</td></tr></table>";
$templist="";
$sql=$empire->query($query);
$b=0;
$ti=0;
$tlistvar=$temp;
while($r=$empire->fetch($sql))
{
$b=1;
$ti++;
if(empty($r[stylepic]))
{
$r[stylepic]="../../data/images/notemp.gif";
}
//当前模板
if($r['styleid']==$addr[spacestyleid])
{
$r[stylename]='<b>'.$r[stylename].'</b>';
}
$var="<a title=\"".$r[stylesay]."\"><img src='$r[stylepic]' width=92 height=100 border=0></a><br><span style='line-height=15pt'>".$r[stylename]."</span><br><span style='line-height=15pt'>[<a href='../../enews?enews=ChangeSpaceStyle&styleid=".$r[styleid]."'>选定</a>]</span>";
$tlistvar=str_replace("<!--list.var".$ti."-->",$var,$tlistvar);
if($ti>=4)
{
$templist.=$tlistvar;
$tlistvar=$temp;
$ti=0;
}
}
//模板
if($ti!=0&&$ti<4)
{
$templist.=$tlistvar;
}
$templist=$header.$templist.$footer;
$url="<a href='../../../'>首页</a> > <a href='../cp'>控制面板</a> > 选择空间模板";
include("../../data/template/cp_1.php");
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="15%" valign="top">
<table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="23">空间设置</td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF"><img src="../../data/images/msgnav.gif" width="5" height="5"> <a href="../../space?userid=<?=$user[userid]?>" target="_blank">预览空间</a></td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF"><img src="../../data/images/msgnav.gif" width="5" height="5"> <a href="SetSpace.php">设置空间</a></td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF"><img src="../../data/images/msgnav.gif" width="5" height="5"> <a href="ChangeStyle.php">选择模板</a></td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF"><img src="../../data/images/msgnav.gif" width="5" height="5"> <a href="gbook.php">管理留言</a></td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF"><img src="../../data/images/msgnav.gif" width="5" height="5"> <a href="feedback.php">管理反馈</a></td>
</tr>
</table>
</td>
<td width="1%"> </td>
<td width="84%" valign="top"><?=$templist?></td>
</tr>
</table>
<?php
include("../../data/template/cp_2.php");
db_close();
$empire=null;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -