AddFriend.php
2.11 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
<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<?php
$public_diyr['pagetitle']=$word;
$url="<a href=../../../../>首頁</a> > <a href=../../cp/>會員中心</a> > <a href=../../friend/?cid=".$fcid.">好友列表</a> > ".$word;
require(ECMS_PATH.'e/template/incfile/header.php');
?>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<form name="form1" method="post" action="../../doaction.php">
<tr class="header">
<td height="25" colspan="2"><?=$word?></td>
</tr>
<tr>
<td width="17%" height="25" bgcolor="#FFFFFF">用戶名: </td>
<td width="83%" bgcolor="#FFFFFF"><input name="fname" type="text" id="fname" value="<?=$fname?>">
(*)</td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">所屬分類:</td>
<td bgcolor="#FFFFFF"><select name="cid">
<option value="0">不設置</option>
<?=$select?>
</select>
[<a href="../FriendClass/" target="_blank">管理分類</a>]</td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">備註:</td>
<td bgcolor="#FFFFFF"><input name="fsay" type="text" id="fname3" value="<?=stripSlashes($r[fsay])?>" size="38"></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> </td>
<td bgcolor="#FFFFFF"><input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
<input name="enews" type="hidden" id="enews" value="<?=$enews?>">
<input name="fid" type="hidden" id="fid" value="<?=$fid?>">
<input name="fcid" type="hidden" id="fcid" value="<?=$fcid?>">
<input name="oldfname" type="hidden" id="oldfname" value="<?=$r[fname]?>"></td>
</tr>
</form>
</table>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>