AddFriend.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. $public_diyr['pagetitle']=$word;
  9. $url="<a href=../../../../>首页</a>&nbsp;>&nbsp;<a href=../../cp/>会员中心</a>&nbsp;>&nbsp;<a href=../../friend/?cid=".$fcid.">好友列表</a>&nbsp;>&nbsp;".$word;
  10. require(ECMS_PATH.'e/template/incfile/header.php');
  11. ?>
  12. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  13. <form name="form1" method="post" action="../../doaction.php">
  14. <tr class="header">
  15. <td height="25" colspan="2"><?=$word?></td>
  16. </tr>
  17. <tr>
  18. <td width="17%" height="25" bgcolor="#FFFFFF">用户名: </td>
  19. <td width="83%" bgcolor="#FFFFFF"><input name="fname" type="text" id="fname" value="<?=$fname?>">
  20. (*)</td>
  21. </tr>
  22. <tr>
  23. <td height="25" bgcolor="#FFFFFF">所属分类:</td>
  24. <td bgcolor="#FFFFFF"><select name="cid">
  25. <option value="0">不设置</option>
  26. <?=$select?>
  27. </select>
  28. [<a href="../FriendClass/" target="_blank">管理分类</a>]</td>
  29. </tr>
  30. <tr>
  31. <td height="25" bgcolor="#FFFFFF">备注:</td>
  32. <td bgcolor="#FFFFFF"><input name="fsay" type="text" id="fname3" value="<?=stripSlashes($r[fsay])?>" size="38"></td>
  33. </tr>
  34. <tr>
  35. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  36. <td bgcolor="#FFFFFF"><input type="submit" name="Submit" value="提交">
  37. <input type="reset" name="Submit2" value="重置">
  38. <input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  39. <input name="fid" type="hidden" id="fid" value="<?=$fid?>">
  40. <input name="fcid" type="hidden" id="fcid" value="<?=$fcid?>">
  41. <input name="oldfname" type="hidden" id="oldfname" value="<?=$r[fname]?>"></td>
  42. </tr>
  43. </form>
  44. </table>
  45. <?php
  46. require(ECMS_PATH.'e/template/incfile/footer.php');
  47. ?>