SetSpace.php
1.38 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
<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<?php
$public_diyr['pagetitle']='設置空間';
$url="<a href='../../../'>首頁</a> > <a href='../cp/'>會員中心</a> > 設置空間";
require(ECMS_PATH.'e/template/incfile/header.php');
?>
<table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
<form name="setspace" method="post" action="index.php">
<tr class="header">
<td height="25" colspan="2">設置空間</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="17%" height="25">空間名稱</td>
<td width="83%">
<input name="spacename" type="text" id="spacename" value="<?=$addr[spacename]?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>空間公告</td>
<td>
<textarea name="spacegg" cols="60" rows="6" id="spacegg"><?=$addr[spacegg]?></textarea></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"> </td>
<td>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
<input name="enews" type="hidden" id="enews" value="DoSetSpace"></td>
</tr>
</form>
</table>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>