ChangeFriend.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <title>选择好友</title>
  11. <link href="../../../data/images/qcss.css" rel="stylesheet" type="text/css">
  12. <script>
  13. function ChangeHy()
  14. {
  15. var fname=document.changeuser.fname.value;
  16. if(fname!="")
  17. {
  18. opener.document.<?=$fm?>.<?=$f?>.value=fname;
  19. }
  20. window.close();
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  26. <form name="changeuser" method="GET" action="index.php?<?=$addvar?>">
  27. <tr class="header">
  28. <td height="23">选择用户</td>
  29. </tr>
  30. <tr>
  31. <td width="82%" height="25" bgcolor="#FFFFFF">分类:
  32. <select name="cid" id="select" onchange=window.location='index.php?<?=$addvar?>&cid='+this.options[this.selectedIndex].value>
  33. <option value="0">显示全部</option>
  34. <?=$select?>
  35. </select></td>
  36. </tr>
  37. <tr>
  38. <td height="25" bgcolor="#FFFFFF">
  39. <select name="fname" size="16" id="fname" style="width:200">
  40. <?=$hyselect?>
  41. </select></td>
  42. </tr>
  43. <tr>
  44. <td height="25" bgcolor="#FFFFFF">
  45. <input type="button" name="Submit" value="确定" onclick="ChangeHy();"></td>
  46. </tr>
  47. </form>
  48. </table>
  49. </body>
  50. </html>