国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.9KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>友情链接更改</title>
  6. <link href="css/base.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  9. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  10. <tr>
  11. <td height="28" background="images/tbg.gif" style="padding-left:10px;">
  12. <b><a href="friendlink_main.php"><u>友情链接管理</u></a></b> &gt;&gt; 链接更改</td>
  13. </tr>
  14. <tr>
  15. <td height="200" bgcolor="#FFFFFF" valign="top">
  16. <form action="friendlink_edit.php" method="post" enctype="multipart/form-data" name="form1">
  17. <input type="hidden" name="id" value="<?php echo $myLink['id']?>">
  18. <input type="hidden" name="dopost" value="saveedit">
  19. <table width="80%" border="0" cellspacing="1" cellpadding="3">
  20. <tr>
  21. <td width="19%" height="25">网址:</td>
  22. <td width="81%">
  23. <input name="url" type="text" id="url" value="<?php echo $myLink['url']?>" size="30" class='pubinputs' />
  24. </td>
  25. </tr>
  26. <tr>
  27. <td width="19%" height="25">排列位置:</td>
  28. <td width="81%">
  29. <input name="sortrank" type="text" id="sortrank" value="<?php echo $myLink['sortrank']?>" size="10" class='pubinputs' style="width:60px" />
  30. (由小到大排列)
  31. </td>
  32. </tr>
  33. <tr>
  34. <td height="25">网站名称:</td>
  35. <td><input name="webname" type="text" id="webname" size="30" value="<?php echo $myLink['webname']?>" class='pubinputs' /></td>
  36. </tr>
  37. <tr>
  38. <td height="25">网站Logo:</td>
  39. <td>
  40. <input name="logo" type="text" id="logo" size="40" value="<?php echo $myLink['logo']?>" class='pubinputs'/>
  41. (88*31 gif或jpg)
  42. </td>
  43. </tr>
  44. <tr>
  45. <td height="25">上传Logo:</td>
  46. <td><input name="logoimg" type="file" id="logoimg" size="30" class='pubinputs' /></td>
  47. </tr>
  48. <tr>
  49. <td height="25">网站简况:</td>
  50. <td><textarea name="msg" cols="50" rows="4" id="msg"><?php echo dede_htmlspecialchars($myLink['msg'])?></textarea></td>
  51. </tr>
  52. <tr>
  53. <td height="25">站长Email:</td>
  54. <td><input name="email" type="text" id="email" size="30" value="<?php echo $myLink['email']?>" class='pubinputs' /></td>
  55. </tr>
  56. <tr>
  57. <td height="25">链接位置:</td>
  58. <td>
  59. <input type='radio' name='ischeck' value="0" <?php if($myLink['ischeck']==0) echo " checked='1' "?>/> 未审核
  60. <input type='radio' name='ischeck' value="1" <?php if($myLink['ischeck']==1) echo " checked='1' "?>/> 内页
  61. <input type='radio' name='ischeck' value="2" <?php if($myLink['ischeck']==2) echo " checked='1' "?>/> 首页
  62. </td>
  63. </tr>
  64. <tr>
  65. <td height="25">网站类型:</td>
  66. <td>
  67. <select name="typeid" id="typeid">
  68. <?php
  69. echo " <option value='".$myLink['typeid']."'>".$myLink['typename']."</option>\r\n";
  70. $dsql->SetQuery("select * from #@__flinktype where id<>'".$myLink['typeid']."'");
  71. $dsql->Execute();
  72. while($row=$dsql->GetObject()){
  73. echo " <option value='".$row->id."'>".$row->typename."</option>\r\n";
  74. }
  75. ?>
  76. </select>
  77. </td>
  78. </tr>
  79. <tr>
  80. <td height="51">&nbsp;</td>
  81. <td>
  82. <input type="submit" name="Submit" value=" 提 交 " class="np coolbg" />   
  83. <input type="reset" name="Submit" value=" 返 回 " onClick="location.href='<?php echo $ENV_GOBACK_URL?>';" class="np coolbg" />
  84. </td>
  85. </tr>
  86. </table>
  87. </form>
  88. </td>
  89. </tr>
  90. </table>
  91. </body>
  92. </html>