AddUserlist.php
7.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.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,"userlist");
$enews=ehtmlspecialchars($_GET['enews']);
$cid=(int)$_GET['cid'];
$url="<a href=ListUserlist.php".$ecms_hashur['whehref'].">管理自定義信息列表</a> > 增加自定義信息列表";
$r[jsfilename]="../../list/";
$r[filetype]=".html";
$r[filepath]="../../a/";
$r[totalsql]="select count(*) as total from [!db.pre!]ecms_news";
$r[listsql]="select * from [!db.pre!]ecms_news order by id desc";
$r[maxnum]=0;
$r[lencord]=25;
//複製
if($enews=="AddUserlist"&&$_GET['docopy'])
{
$listid=(int)$_GET['listid'];
$r=$empire->fetch1("select * from {$dbtbpre}enewsuserlist where listid='$listid'");
$url="<a href=ListUserlist.php".$ecms_hashur['whehref'].">管理自定義信息列表</a> > 複製自定義信息列表:<b>".$r[listname]."</b>";
}
//修改
if($enews=="EditUserlist")
{
$listid=(int)$_GET['listid'];
$r=$empire->fetch1("select * from {$dbtbpre}enewsuserlist where listid='$listid'");
$url="<a href=ListUserlist.php".$ecms_hashur['whehref'].">管理自定義信息列表</a> -> 修改自定義信息列表:<b>".$r[listname]."</b>";
}
//列表模板
$msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod order by myorder,mid");
while($mr=$empire->fetch($msql))
{
$listtemp_options.="<option value=0 style='background:#99C4E3'>".$mr[mname]."</option>";
$l_sql=$empire->query("select tempid,tempname from ".GetTemptb("enewslisttemp")." where modid='$mr[mid]'");
while($l_r=$empire->fetch($l_sql))
{
if($l_r[tempid]==$r[listtempid])
{$l_d=" selected";}
else
{$l_d="";}
$listtemp_options.="<option value=".$l_r[tempid].$l_d."> |-".$l_r[tempname]."</option>";
}
}
//當前使用的模板組
$thegid=GetDoTempGid();
//分類
$cstr="";
$csql=$empire->query("select classid,classname from {$dbtbpre}enewsuserlistclass order by classid");
while($cr=$empire->fetch($csql))
{
$select="";
if($cr[classid]==$r[classid])
{
$select=" selected";
}
$cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
}
db_close();
$empire=null;
?>
<!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>位置:<?=$url?></td>
</tr>
</table>
<form name="form1" method="post" action="ListUserlist.php">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25" colspan="2">增加自定義信息列表
<input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="listid" type="hidden" id="listid" value="<?=$listid?>">
<input name="oldfilepath" type="hidden" id="oldfilepath" value="<?=$r[filepath]?>">
<input name="oldfiletype" type="hidden" id="oldfiletype" value="<?=$r[filetype]?>">
<input name="cid" type="hidden" id="cid" value="<?=$cid?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="18%" height="25">列表名稱:</td>
<td width="82%" height="25"> <input name="listname" type="text" id="listname" value="<?=$r[listname]?>" size="42"> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">所屬分類:</td>
<td height="25"><select name="classid" id="classid">
<option value="0">不隸屬於任何類別</option>
<?=$cstr?>
</select>
<input type="button" name="Submit6222322" value="管理分類" onclick="window.open('UserlistClass.php<?=$ecms_hashur['whehref']?>');"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">網頁標題:</td>
<td height="25"><input name="pagetitle" type="text" id="pagetitle" value="<?=$r[pagetitle]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">網頁關鍵詞:</td>
<td height="25"><input name="pagekeywords" type="text" id="pagekeywords" value="<?=$r[pagekeywords]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">網頁描述:</td>
<td height="25"><input name="pagedescription" type="text" id="pagedescription" value="<?=$r[pagedescription]?>" size="42"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">文件存放目錄:</td>
<td height="25"><input name="filepath" type="text" id="filepath" value="<?=$r[filepath]?>" size="42">
<input type="button" name="Submit4" value="選擇目錄" onclick="window.open('../file/ChangePath.php?<?=$ecms_hashur['ehref']?>&returnform=opener.document.form1.filepath.value','','width=400,height=500,scrollbars=yes');">
<font color="#666666">(如:<strong>"../../a/</strong>"表示根目錄下的a目錄)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">文件擴展名:</td>
<td height="25"><input name="filetype" type="text" id="filetype" value="<?=$r[filetype]?>" size="12">
<select name="select" onchange="document.form1.filetype.value=this.value">
<option value=".html">擴展名</option>
<option value=".html">.html</option>
<option value=".htm">.htm</option>
<option value=".php">.php</option>
<option value=".shtml">.shtml</option>
</select>
(如.html,.xml,.htm等) </td>
</tr>
<tr bgcolor="#FFFFFF">
<td rowspan="4">查詢SQL語句:</td>
<td height="25">統計記錄:
<input name="totalsql" type="text" id="totalsql" value="<?=ehtmlspecialchars(stripSlashes($r[totalsql]))?>" size="72"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><font color="#666666">(如:select count(*) as total from phome_ecms_news
where classid=1)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">查詢記錄:
<input name="listsql" type="text" id="listsql" value="<?=ehtmlspecialchars(stripSlashes($r[listsql]))?>" size="72"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"><font color="#666666">(如:select * from phome_ecms_news where
classid=1 order by id desc)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="26">查詢總條數:</td>
<td height="26"><input name="maxnum" type="text" id="lencord" value="<?=$r[maxnum]?>" size="6">
條信息(0為不限制)</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="26">每頁顯示:</td>
<td height="26"> <input name="lencord" type="text" id="jsname3" value="<?=$r[lencord]?>" size="6">
條信息</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">使用列表模板:</td>
<td height="25"><select name="listtempid" id="listtempid">
<?=$listtemp_options?>
</select> <input type="button" name="Submit622" value="管理列表模板" onclick="window.open('../template/ListListtemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"> </td>
<td height="25"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"> </td>
<td height="25">表前綴可用「<strong>[!db.pre!]</strong>」表示</td>
</tr>
</table>
</form>
</body>
</html>