国内流行的内容管理系统(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.

72 lines
2.5KB

  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><?php echo $cfg_webname;?>_所有链接</title>
  6. <link href="<?php echo $cfg_templets_skin; ?>/style/dedecms.css" rel="stylesheet" type="text/css" media="screen" />
  7. </head>
  8. <body class="flinkpage">
  9. <div class="header">
  10. <div class="top w960 center">
  11. <div class="title">
  12. <h1><a href="<?php echo $cfg_basehost;?>" title="<?php echo $cfg_webname;?>"><img src="<?php echo $cfg_templets_skin; ?>/images/logo.gif" height="54" width="216" alt=""/></a> </h1>
  13. </div><!-- /title -->
  14. </div><!-- /top -->
  15. </div><!-- /header -->
  16. <div class="w960 clear center mt1 cmt-box">
  17. <div class="sp-title">
  18. <h2>友情链接</h2>
  19. <span class="more">
  20. <a href='flink_add.php'>申请链接</a>
  21. </span>
  22. </div>
  23. <div class="flinkbox">
  24. <ul class="f5">
  25. <?php
  26. $row = 180;
  27. $titlelen = 50;
  28. $dsql->SetQuery("Select * from `#@__flink` where ischeck>0 order by sortrank asc");
  29. $dsql->Execute();
  30. $revalue = "";
  31. for($i=1;$i<=$row;$i++)
  32. {
  33. if($dbrow=$dsql->GetObject())
  34. {
  35. $wtitle = cn_substr($dbrow->webname,$titlelen);
  36. if($dbrow->logo=="")
  37. $revalue.= "<li><a href='".$dbrow->url."' target='_blank'>$wtitle</a></li>";
  38. else
  39. $revalue.= "<li><a href='".$dbrow->url."' target='_blank'><img src='".$dbrow->logo."' width='88' height='31' border='0' alt='$wtitle'></a></li>";
  40. }
  41. if(!$dbrow) break;
  42. }
  43. echo $revalue;
  44. ?>
  45. </ul>
  46. </div>
  47. </div>
  48. <!-- //底部模板 -->
  49. <div class="footer w960 center mt1 clear">
  50. <!--
  51. 为了支持织梦团队的发展,请您保留织梦内容管理系统的链接信息.
  52. 我们对支持织梦团队发展的朋友表示真心的感谢!织梦因您更精彩!
  53. -->
  54. <div class="footer_left"></div>
  55. <div class="footer_body">
  56. <p class="powered">
  57. Powered by <a href="http://www.dedecms.com" title="织梦内容管理系统(DedeCMS)--国内最专业的PHP网站管理系统,轻松建站的首选利器。" target="_blank"><strong>DedeCMS<?php echo $cfg_version; ?></strong></a> &copy; 2004-2019 <a href="http://www.desdev.cn/" target="_blank">DesDev</a> Inc.<br /><div class="copyright"><?php echo $cfg_powerby; ?>&nbsp;&nbsp;<?php echo $cfg_beian; ?></div></p>
  58. <!-- /powered -->
  59. </div>
  60. <div class="footer_right"></div>
  61. </div>
  62. </body>
  63. </html>