| 1234567891011121314151617181920212223242526272829303132333435363738 | <?phpif(!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="<?=stripSlashes($addr[spacename])?>"></td>          </tr>          <tr bgcolor="#FFFFFF">             <td>空间公告</td>            <td>               <textarea name="spacegg" cols="60" rows="6" id="spacegg"><?=stripSlashes($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><?phprequire(ECMS_PATH.'e/template/incfile/footer.php');?>
 |