AddZt.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require('../../class/connect.php');
  4. require('../../class/db_sql.php');
  5. require('../../class/functions.php');
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. $enews=ehtmlspecialchars($_GET['enews']);
  19. $ztid=(int)$_GET['ztid'];
  20. if($enews=='EditZt')
  21. {
  22. //验证权限
  23. $returnandlevel=CheckAndUsernamesLevel('dozt',$ztid,$logininid,$loginin,$loginlevel);
  24. }
  25. else
  26. {
  27. //验证权限
  28. CheckLevel($logininid,$loginin,$classid,"zt");
  29. $returnandlevel=2;
  30. }
  31. $url="<a href=ListZt.php".$ecms_hashur['whehref'].">管理专题</a>&nbsp;>&nbsp;增加专题";
  32. $postword='增加专题';
  33. //初使化数据
  34. $r[reorder]="newstime DESC";
  35. $r[maxnum]=0;
  36. $r[ztnum]=25;
  37. $r[zttype]=".html";
  38. $r[newline]=10;
  39. $r[hotline]=10;
  40. $r[goodline]=10;
  41. $r[hotplline]=10;
  42. $r[firstline]=10;
  43. $pripath='s/';
  44. //复制专题
  45. $docopy=RepPostStr($_GET['docopy'],1);
  46. if($docopy&&$enews=="AddZt")
  47. {
  48. $copyclass=1;
  49. }
  50. $ecmsfirstpost=1;
  51. if($enews=='EditZt')
  52. {
  53. $filepass=$ztid;
  54. }
  55. else
  56. {
  57. $filepass=ReturnTranFilepass();
  58. }
  59. //修改专题
  60. if($enews=="EditZt"||$copyclass)
  61. {
  62. $ecmsfirstpost=0;
  63. if($copyclass)
  64. {
  65. $thisdo="复制";
  66. }
  67. else
  68. {
  69. $thisdo="修改";
  70. }
  71. $r=$empire->fetch1("select * from {$dbtbpre}enewszt where ztid='$ztid'");
  72. $addr=$empire->fetch1("select * from {$dbtbpre}enewsztadd where ztid='$ztid'");
  73. $usernames=substr($r['usernames'],1,-1);
  74. $url="<a href=ListZt.php".$ecms_hashur['whehref'].">管理专题</a>&nbsp;>&nbsp;".$thisdo."专题:".$r[ztname];
  75. $postword=$thisdo.'专题';
  76. //专题目录
  77. $mycr=GetPathname($r[ztpath]);
  78. $pripath=$mycr[1];
  79. $ztpath=$mycr[0];
  80. //复制专题
  81. if($copyclass)
  82. {
  83. $r[ztname].='(1)';
  84. $ztpath.='1';
  85. }
  86. }
  87. //列表模板
  88. $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod order by myorder,mid");
  89. while($mr=$empire->fetch($msql))
  90. {
  91. $listtemp_options.="<option value=0 style='background:#99C4E3'>".$mr[mname]."</option>";
  92. $l_sql=$empire->query("select tempid,tempname from ".GetTemptb("enewslisttemp")." where modid='$mr[mid]'");
  93. while($l_r=$empire->fetch($l_sql))
  94. {
  95. if($l_r[tempid]==$r[listtempid])
  96. {$l_d=" selected";}
  97. else
  98. {$l_d="";}
  99. $listtemp_options.="<option value=".$l_r[tempid].$l_d."> |-".$l_r[tempname]."</option>";
  100. }
  101. }
  102. //栏目
  103. $options=ShowClass_AddClass("",$r[classid],0,"|-",0,0);
  104. //封面模板
  105. $classtempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewsclasstemp")." order by tempid");
  106. while($classtempr=$empire->fetch($classtempsql))
  107. {
  108. $select="";
  109. if($r[classtempid]==$classtempr[tempid])
  110. {
  111. $select=" selected";
  112. }
  113. $classtemp.="<option value='".$classtempr[tempid]."'".$select.">".$classtempr[tempname]."</option>";
  114. }
  115. //评论模板
  116. $pltemp='';
  117. $pltempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewspltemp")." order by tempid");
  118. while($pltempr=$empire->fetch($pltempsql))
  119. {
  120. $select="";
  121. if($r[pltempid]==$pltempr[tempid])
  122. {
  123. $select=" selected";
  124. }
  125. $pltemp.="<option value='".$pltempr[tempid]."'".$select.">".$pltempr[tempname]."</option>";
  126. }
  127. //分类
  128. $zcstr="";
  129. $zcsql=$empire->query("select classid,classname from {$dbtbpre}enewsztclass order by classid");
  130. while($zcr=$empire->fetch($zcsql))
  131. {
  132. $select="";
  133. if($zcr[classid]==$r[zcid])
  134. {
  135. $select=" selected";
  136. }
  137. $zcstr.="<option value='".$zcr[classid]."'".$select.">".$zcr[classname]."</option>";
  138. }
  139. //优化方案
  140. $yh_options='';
  141. $yhsql=$empire->query("select id,yhname from {$dbtbpre}enewsyh order by id");
  142. while($yhr=$empire->fetch($yhsql))
  143. {
  144. $select='';
  145. if($r[yhid]==$yhr[id])
  146. {
  147. $select=' selected';
  148. }
  149. $yh_options.="<option value='".$yhr[id]."'".$select.">".$yhr[yhname]."</option>";
  150. }
  151. $from=(int)$_GET['from'];
  152. //当前使用的模板组
  153. $thegid=GetDoTempGid();
  154. ?>
  155. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  156. <html>
  157. <head>
  158. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  159. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  160. <title>增加专题</title>
  161. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  162. <script>
  163. //检查
  164. function CheckForm(obj){
  165. if(obj.ztname.value=='')
  166. {
  167. alert("请输入专题名称");
  168. obj.ztname.focus();
  169. return false;
  170. }
  171. if(obj.ztpath.value=="")
  172. {
  173. alert("请输入专题目录");
  174. obj.ztpath.focus();
  175. return false;
  176. }
  177. if(obj.listtempid.value==0)
  178. {
  179. alert("请选择列表模板");
  180. obj.listtempid.focus();
  181. return false;
  182. }
  183. }
  184. </script>
  185. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  186. </head>
  187. <body>
  188. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  189. <tr>
  190. <td>位置:
  191. <?=$url?>
  192. </td>
  193. </tr>
  194. </table>
  195. <br>
  196. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  197. <form name="form1" method="post" action="../ecmsclass.php" onsubmit="return CheckForm(document.form1);">
  198. <?=$ecms_hashur['form']?>
  199. <tr class="header">
  200. <td height="25" colspan="2">
  201. <?=$postword?>
  202. <input type=hidden name=enews value=<?=$enews?>> <input name="from" type="hidden" id="from" value="<?=$from?>"></td>
  203. </tr>
  204. <tr>
  205. <td height="25" colspan="2">基本属性</td>
  206. </tr>
  207. <tr>
  208. <td width="24%" height="25" bgcolor="#FFFFFF">专题名称(*)</td>
  209. <td width="76%" height="25" bgcolor="#FFFFFF"> <input name="ztname" type="text" id="ztname" value="<?=$r[ztname]?>" size="38">
  210. <?
  211. if($enews=="AddZt")
  212. {
  213. ?>
  214. <input type="button" name="Submit5" value="生成拼音目录" onclick="window.open('../GetPinyin.php?<?=$ecms_hashur['href']?>&hz='+document.form1.ztname.value+'&returnform=opener.document.form1.ztpath.value','','width=160,height=100');">
  215. <?
  216. }
  217. ?>
  218. <input name="ztid" type="hidden" id="ztid" value="<?=$ztid?>"> <input name="oldztid" type="hidden" id="oldztid" value="<?=$ztid?>"> <input name="filepass" type="hidden" id="filepass" value="<?=$filepass?>"></td>
  219. </tr>
  220. <?php
  221. if($returnandlevel==2)
  222. {
  223. ?>
  224. <tr>
  225. <td height="25" bgcolor="#FFFFFF">可更新专题的用户</td>
  226. <td height="25" bgcolor="#FFFFFF"><input name="usernames" type="text" id="usernames" value="<?=$usernames?>" size="38">
  227. <font color="#666666">
  228. <input type="button" name="Submit32" value="选择" onclick="window.open('../ChangeUser.php?field=usernames&form=form1<?=$ecms_hashur['ehref']?>','','width=300,height=520,scrollbars=yes');">
  229. (多个用户用“,”逗号隔开)</font></td>
  230. </tr>
  231. <?php
  232. }
  233. ?>
  234. <tr>
  235. <td height="25" bgcolor="#FFFFFF">隶属信息栏目</td>
  236. <td height="25" bgcolor="#FFFFFF"> <select name="classid" id="classid">
  237. <option value="0">隶属于所有栏目</option>
  238. <?=$options?>
  239. </select> <input type="button" name="Submit622232" value="管理栏目" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>');">
  240. <font color="#666666">(选择父栏目,将应用于子栏目)</font></td>
  241. </tr>
  242. <tr>
  243. <td height="25" valign="top" bgcolor="#FFFFFF">存放文件夹(*)
  244. <input name="oldztpath" type="hidden" id="oldztpath2" value="<?=$r[ztpath]?>">
  245. <input name="oldpripath" type="hidden" id="oldztpath3" value="<?=$pripath?>"> </td>
  246. <td bgcolor="#FFFFFF"> <table border="0" cellspacing="1" cellpadding="3">
  247. <tr bgcolor="DBEAF5">
  248. <td bgcolor="DBEAF5">&nbsp;</td>
  249. <td bgcolor="DBEAF5">上层目录</td>
  250. <td bgcolor="DBEAF5">本专题目录</td>
  251. <td bgcolor="DBEAF5">&nbsp;</td>
  252. </tr>
  253. <tr>
  254. <td><div align="right">根目录/</div></td>
  255. <td><input name="pripath" type="text" id="pripath" value="<?=$pripath?>" size="30"></td>
  256. <td><input name="ztpath" type="text" id="ztpath2" value="<?=$ztpath?>" size="16"></td>
  257. <td><input type="button" name="Submit3" value="检测目录" onclick="javascript:window.open('../ecmscom.php?<?=$ecms_hashur['href']?>&enews=CheckPath&pripath='+document.form1.pripath.value+'&classpath='+document.form1.ztpath.value,'','width=100,height=100,top=250,left=450');"></td>
  258. </tr>
  259. </table></td>
  260. </tr>
  261. <tr>
  262. <td height="25" bgcolor="#FFFFFF">使用优化方案</td>
  263. <td bgcolor="#FFFFFF"><select name="yhid" id="yhid">
  264. <option name="0">不使用</option>
  265. <?=$yh_options?>
  266. </select> <input type="button" name="Submit63" value="管理优化方案" onclick="window.open('../db/ListYh.php<?=$ecms_hashur['whehref']?>');"></td>
  267. </tr>
  268. <tr>
  269. <td height="25" bgcolor="#FFFFFF">文件扩展名</td>
  270. <td bgcolor="#FFFFFF"> <input name="zttype" type="text" id="zttype4" value="<?=$r[zttype]?>" size="38">
  271. <select name="select" onchange="document.form1.zttype.value=this.value">
  272. <option value=".html">扩展名</option>
  273. <option value=".html">.html</option>
  274. <option value=".htm">.htm</option>
  275. <option value=".php">.php</option>
  276. <option value=".shtml">.shtml</option>
  277. </select> </td>
  278. </tr>
  279. <tr>
  280. <td height="25" bgcolor="#FFFFFF">绑定域名</td>
  281. <td bgcolor="#FFFFFF"> <input name="zturl" type="text" id="zturl" value="<?=$r[zturl]?>" size="38">
  282. <font color="#666666"> (如不绑定,请留空.后面无需加&quot;/&quot;)</font></td>
  283. </tr>
  284. <tr>
  285. <td height="25" bgcolor="#FFFFFF">所属分类</td>
  286. <td bgcolor="#FFFFFF"><select name="zcid" id="zcid">
  287. <option value="0">不隶属于任何分类</option>
  288. <?=$zcstr?>
  289. </select> <input type="button" name="Submit6222322" value="管理分类" onclick="window.open('ListZtClass.php<?=$ecms_hashur['whehref']?>');"></td>
  290. </tr>
  291. <tr>
  292. <td height="25" bgcolor="#FFFFFF">专题缩略图</td>
  293. <td bgcolor="#FFFFFF"> <input name="ztimg" type="text" id="ztimg" value="<?=$r[ztimg]?>" size="38">
  294. <a onclick="window.open('../ecmseditor/FileMain.php?<?=$ecms_hashur['ehref']?>&modtype=2&type=1&classid=&doing=2&field=ztimg&filepass=<?=$filepass?>&sinfo=1','','width=700,height=550,scrollbars=yes');" title="选择已上传的图片"><img src="../../data/images/changeimg.gif" width="22" height="22" border="0" align="absbottom"></a></td>
  295. </tr>
  296. <tr>
  297. <td height="25" bgcolor="#FFFFFF">网页关键字</td>
  298. <td bgcolor="#FFFFFF"> <input name="ztpagekey" type="text" id="ztpagekey" value="<?=$r[ztpagekey]?>" size="38"></td>
  299. </tr>
  300. <tr>
  301. <td height="25" valign="top" bgcolor="#FFFFFF">专题简介</td>
  302. <td bgcolor="#FFFFFF"> <textarea name="intro" cols="70" rows="8" id="intro"><?=stripSlashes($r[intro])?></textarea></td>
  303. </tr>
  304. <tr>
  305. <td height="25" bgcolor="#FFFFFF">排序</td>
  306. <td bgcolor="#FFFFFF"><input name="myorder" type="text" id="myorder" value="<?=$r[myorder]?>" size="38">
  307. <font color="#666666"> (值越小越前面)</font></td>
  308. </tr>
  309. <tr>
  310. <td height="25" bgcolor="#FFFFFF">显示到导航</td>
  311. <td bgcolor="#FFFFFF"> <input type="radio" name="showzt" value="0"<?=$r[showzt]==0?' checked':''?>>
  312. <input type="radio" name="showzt" value="1"<?=$r[showzt]==1?' checked':''?>>
  313. 否<font color="#666666">(如:专题导航标签)</font></td>
  314. </tr>
  315. <tr>
  316. <td height="25" bgcolor="#FFFFFF">信息可选择</td>
  317. <td bgcolor="#FFFFFF"><input type="radio" name="usezt" value="0"<?=$r[usezt]==0?' checked':''?>>
  318. <input type="radio" name="usezt" value="1"<?=$r[usezt]==1?' checked':''?>>
  319. 否<font color="#666666">(如果选择否那么增加信息时不会显示这个专题)</font></td>
  320. </tr>
  321. <tr>
  322. <td height="25" bgcolor="#FFFFFF">过期时间</td>
  323. <td bgcolor="#FFFFFF"><input name="endtime" type="text" id="endtime" value="<?=$r[endtime]?date('Y-m-d',$r[endtime]):''?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  324. <font color="#666666">(超过此期限不再更新和评论,空为不限制)
  325. <input name="oldendtime" type="hidden" id="oldendtime" value="<?=$r[endtime]?>">
  326. </font></td>
  327. </tr>
  328. <tr>
  329. <td height="25" bgcolor="#FFFFFF">评论</td>
  330. <td bgcolor="#FFFFFF"><input type="radio" name="closepl" value="0"<?=$r['closepl']==0?' checked':''?>>
  331. 开启
  332. <input type="radio" name="closepl" value="1"<?=$r['closepl']==1?' checked':''?>>
  333. 关闭,评论是否审核:
  334. <input name="checkpl" type="checkbox" id="checkpl" value="1"<?=$r['checkpl']==1?' checked':''?>>
  335. 是</td>
  336. </tr>
  337. <tr>
  338. <td height="25" colspan="2">页面设置</td>
  339. </tr>
  340. <tr>
  341. <td height="25" bgcolor="#FFFFFF">页面显示模式</td>
  342. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="islist" value="0"<?=$r[islist]==0?' checked':''?>>
  343. 封面式
  344. <input type="radio" name="islist" value="1"<?=$r[islist]==1?' checked':''?>>
  345. 列表式
  346. <input type="radio" name="islist" value="2"<?=$r[islist]==2?' checked':''?>>
  347. 页面内容式
  348. <input name="oldislist" type="hidden" id="oldislist" value="<?=$r[islist]?>"></td>
  349. </tr>
  350. <tr>
  351. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  352. <td height="25" bgcolor="#FFFFFF"><font color="#666666">说明:封面式要选择封面模板、列表式要选择列表模板、内容式要录入页面内容</font></td>
  353. </tr>
  354. <tr>
  355. <td height="25" bgcolor="#FFFFFF">封面模板</td>
  356. <td height="25" bgcolor="#FFFFFF"><select name="classtempid">
  357. <?=$classtemp?>
  358. </select> <input type="button" name="Submit6223" value="管理封面模板" onclick="window.open('../template/ListClasstemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
  359. </tr>
  360. <tr>
  361. <td height="25" bgcolor="#FFFFFF">所用列表模板</td>
  362. <td height="25" bgcolor="#FFFFFF"> <select name="listtempid" id="listtempid">
  363. <?=$listtemp_options?>
  364. </select> <input type="button" name="Submit622" value="管理列表模板" onclick="window.open('../template/ListListtemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
  365. </tr>
  366. <tr>
  367. <td height="25" bgcolor="#FFFFFF">评论模板</td>
  368. <td height="25" bgcolor="#FFFFFF"><select name="pltempid" id="pltempid">
  369. <option value="0">使用默认模板 </option>
  370. <?=$pltemp?>
  371. </select>
  372. <input type="button" name="Submit62" value="管理评论模板" onclick="window.open('../template/ListPltemp.php?gid=<?=$thegid?><?=$ecms_hashur['ehref']?>');"></td>
  373. </tr>
  374. <tr>
  375. <td rowspan="3" valign="top" bgcolor="#FFFFFF">列表式设置</td>
  376. <td height="25" bgcolor="#FFFFFF"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
  377. <tr>
  378. <td width="90">排序方式</td>
  379. <td><input name="reorder" type="text" id="reorder" value="<?=$r[reorder]?>">
  380. <select name="orderselect" onchange="document.form1.reorder.value=this.value">
  381. <option value="newstime DESC"></option>
  382. <option value="newstime DESC">按发布时间降序排序</option>
  383. <option value="id DESC">按信息ID降序排序</option>
  384. <option value="zid DESC">按加入ID降序排序</option>
  385. <option value="isgood DESC,newstime DESC">按推荐置顶排序</option>
  386. </select> </td>
  387. </tr>
  388. </table></td>
  389. </tr>
  390. <tr>
  391. <td height="25" bgcolor="#FFFFFF"> <table border="0" cellspacing="0" cellpadding="0">
  392. <tr>
  393. <td width="90">显示总记录数</td>
  394. <td><input name="maxnum" type="text" id="maxnum" value="<?=$r[maxnum]?>" size="6">
  395. <font color="#666666">(0为显示所有记录)</font> </td>
  396. </tr>
  397. </table></td>
  398. </tr>
  399. <tr>
  400. <td height="25" bgcolor="#FFFFFF"> <table border="0" cellspacing="0" cellpadding="0">
  401. <tr>
  402. <td width="90">每页显示记录数</td>
  403. <td><input name="ztnum" type="text" id="ztnum3" value="<?=$r[ztnum]?>" size="6"></td>
  404. </tr>
  405. </table></td>
  406. </tr>
  407. <tr>
  408. <td height="25" bgcolor="#FFFFFF">页面内容<font color="#666666">(支持标签同封面模板)</font></td>
  409. <td height="25" bgcolor="#FFFFFF">请将内容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.form1.classtext.value);document.form1.classtext.select()" title="点击复制模板内容"><strong>复制到Dreamweaver(推荐)</strong></a>或者使用<a href="#ecms" onclick="window.open('../template/editor.php?<?=$ecms_hashur['ehref']?>&getvar=opener.document.form1.classtext.value&returnvar=opener.document.form1.classtext.value&fun=ReturnHtml','editclasstext','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在线编辑</strong></a>进行可视化编辑</td>
  410. </tr>
  411. <tr>
  412. <td height="25" colspan="2" bgcolor="#FFFFFF"> <textarea name="classtext" cols="80" rows="23" id="classtext" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($addr[classtext]))?></textarea></td>
  413. </tr>
  414. <?php
  415. $loadeditorjs='';
  416. $ztfnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsztf");
  417. if($ztfnum)
  418. {
  419. $editorfnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsztf where fform='editor' limit 1");
  420. if($editorfnum)
  421. {
  422. include('../ecmseditor/eshoweditor.php');
  423. $loadeditorjs=ECMS_ShowEditorJS('../ecmseditor/infoeditor/');
  424. }
  425. ?>
  426. <?=$loadeditorjs?>
  427. <tr>
  428. <td height="25" colspan="2">自定义字段设置</td>
  429. </tr>
  430. <?php
  431. @include('../../data/html/ztaddform.php');
  432. ?>
  433. <tr bgcolor="#FFFFFF">
  434. <td height="30" colspan="2"><strong>专题自定义字段调用说明</strong><br>
  435. 内置调用专题自定义字段函数:ReturnZtAddField(专题ID,字段名),专题ID=0为当前专题ID。取多个字段内容可用逗号隔开,例子:<br>
  436. 取得'classtext'字段内容:$value=ReturnZtAddField(0,'classtext'); //$value就是字段内容。<br>
  437. 取得多个字段内容:$value=ReturnZtAddField(1,'ztid,classtext'); //$value['classtext']才是字段内容。</td>
  438. </tr>
  439. <?php
  440. }
  441. ?>
  442. <tr>
  443. <td height="25" bgcolor="#FFFFFF"> <div align="center"></div></td>
  444. <td bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交"> &nbsp;&nbsp;
  445. <input type="reset" name="Submit2" value="重置"> </td>
  446. </tr>
  447. </form>
  448. </table>
  449. </body>
  450. </html>
  451. <?php
  452. db_close();
  453. $empire=null;
  454. ?>