Discuz Thai

 ลืมรหัสผ่าน
 สมัครสมาชิก

ข้อตกลงการใช้งานกระดานข่าวดิสคัสไทย DiscuzThai Agreement (English Version) ประกาศดิสคัสไทย - ทำเนียบดิสคัสภาษาไทย

Discuz! X3.5 Thai R20240520 Rev.9 (NEW) [วิดีโอช่วยสอน] อัปเกรด Discuz! X3.4 เป็น X3.5 Discord ของ Discuz! Thai Community อย่างเป็นทางการ

Discuz! X3.4 Thai R20220811 (REV.75) สิ้นสุดการสนับสนุน Discuz! X3.4 ภาษาไทยตั้งแต่วันนี้เป็นต้นไป (ขอแนะนำให้อัปเกรดเป็น X3.5 แทน)

ค้นหา
แท็กยอดนิยม: ดิสคัสภาษาไทย Discuz Thai
ดู: 2170|ตอบกลับ: 3

เกี่ยวกับ ท๊อปลิส

[คัดลอกลิงก์]
msms34 โพสต์ 2008-2-4 15:05:57 |โหมดอ่าน
ของผมใช้ เวอชั่น ที่มี ADS คับ

***ทำยังไงให้ตรง ส่วน หัวข้อใหม่ ตอบล่าสุด ดูสูงสุด แสดงตัวอักษรได้ยาวๆๆ
***ตรง ส่วน หัวข้อใหม่ ตอบล่าสุด ดูสูงสุด  ระบุหมวดที่จะแสดงได้ป่าวคับ
***แล้วก็ ตรง ADS รูปตั้งเป็นนามสกุลอะไรถึงจะเห็นรูปอ่ะคับ


ขอบคุณมากคับ
acaz โพสต์ 2008-2-4 16:54:56
ผมเอา Toplist ตัวเก่ามาแปลงใส่หน่ะครับ
 เจ้าของ| msms34 โพสต์ 2008-2-4 17:17:33
ต้องทำยังไงหรอครับบบ ช่วยอธิบายหน่อยละกัน
acaz โพสต์ 2008-2-5 13:13:56
เปิดไฟลล์ index.php
ค้นหา
  1. $rsshead = $rssstatus ? ('<link rel="alternate" type="application/rss+xml" title="'.$bbname.'" href="'.$boardurl.'rss.php?auth='.$rssauth."" />\n") : '';
คัดลอกไปที่คลิปบอร์ด
ใส่โค๊ดนี้ด้านบน
  1. //----????????
  2. $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
  3. //??
  4. $hack_cut_str = 150; //????
  5. $hack_cut_strauthor = 9;
  6. $new_post_threadlist = array();
  7. $nthread = array();
  8. $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.dateline DESC LIMIT 0, 10");
  9. while($nthread = $db->fetch_array($query)) {
  10.         $nthread['forumname'] = ereg_replace('<[^>]*>','',$nthread['name']);
  11.         $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
  12.         $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor);
  13.         $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
  14.         $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
  15.         if($nthread['highlight']) {
  16.                 $string = sprintf('%02d', $nthread['highlight']);
  17.                 $stylestr = sprintf('%03b', $string[0]);
  18.                 $nthread['highlight'] = 'style="';
  19.                 $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  20.                 $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  21.                 $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  22.                 $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  23.                 $nthread['highlight'] .= '"';
  24.         } else {
  25.                 $nthread['highlight'] = '';
  26.         }
  27.         $new_post_threadlist[] = $nthread;
  28. }

  29. //???
  30. $hack_cut_str = 150; //????
  31. $hack_cut_strauthor = 9;
  32. $new_reply_threadlist = array();
  33. $rthread = array();
  34. $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.lastpost DESC LIMIT 0, 10");
  35. while($rthread = $db->fetch_array($query)) {
  36.         $rthread['forumname'] = ereg_replace('<[^>]*>','',$rthread['name']);
  37.         $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
  38.         $rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor);
  39.                 $rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
  40.         $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
  41.         if($rthread['highlight']) {
  42.                 $string = sprintf('%02d', $rthread['highlight']);
  43.                 $stylestr = sprintf('%03b', $string[0]);
  44.                 $rthread['highlight'] = 'style="';
  45.                 $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  46.                 $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  47.                 $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  48.                 $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  49.                 $rthread['highlight'] .= '"';
  50.         } else {
  51.                 $rthread['highlight'] = '';
  52.         }
  53.         $new_reply_threadlist[] = $rthread;
  54. }

  55. //??
  56. $hack_cut_str = 150; //????
  57. $hack_cut_strauthor = 9;
  58. $new_hot_threadlist = array();
  59. $mthread = array();
  60. $ctime=$timestamp-3600*24*7;//??7??????  
  61. $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND t.dateline>$ctime AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.replies DESC LIMIT 0, 10");
  62. while($mthread = $db->fetch_array($query)) {
  63.         $mthread['forumname'] = ereg_replace('<[^>]*>','',$mthread['name']);
  64.         $mthread['view_subject'] = cutstr($mthread['subject'],$hack_cut_str);
  65.         $mthread['view_lastposter'] = cutstr($mthread['lastposter'],$hack_cut_strauthor);
  66.                 $mthread['date']= gmdate("$dateformat $timeformat", $mthread['dateline'] + $timeoffset * 3600);
  67.         $mthread['lastreplytime']= gmdate("$dateformat $timeformat", $mthread[lastpost] + ($timeoffset * 3600));
  68.         if($mthread['highlight']) {
  69.                 $string = sprintf('%02d', $mthread['highlight']);
  70.                 $stylestr = sprintf('%03b', $string[0]);
  71.                 $mthread['highlight'] = 'style="';
  72.                 $mthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  73.                 $mthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  74.                 $mthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  75.                 $mthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  76.                 $mthread['highlight'] .= '"';
  77.         } else {
  78.                 $mthread['highlight'] = '';
  79.         }
  80.         $new_hot_threadlist[] = $mthread;
  81. }

  82. //??????
  83. $tomonth=date(n);
  84. $todate=date(j);
  85. $toyear=date(Y);
  86. $time=mktime(0,0,0,$tomonth,$todate,$toyear);
  87. $query=$db->query("select count(pid) as num,authorid,author from $tablepre"."posts where dateline>=$time group by authorid order by num desc limit 0,10");
  88. while($result=$db->fetch_array($query)){
  89.         $poststar.="<div style="overflow: hidden;height: 20px;width: 100%;"><a href=space.php?uid=".$result[authorid].">".cutstr($result[author],8)."</a><font color=red>[".$result[num]."]</font></div>";
  90. }
  91. //----????????
คัดลอกไปที่คลิปบอร์ด
บันทึก

เปิดไฟลล์ toplist.htm
เอาโค๊ดนี้ไปวาง
  1. <style type="text/css">
  2. <!--
  3. .usershow a:link { color:#3758B3; text-decoration: none; }
  4. .usershow a:visited { color:#3758B3; text-decoration: none; }
  5. .usershow a:hover { color:#3758B3; text-decoration: underline; }
  6. .button_bg1 { width: 84px; height: 22px; border-top: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; border-bottom: 0px solid #CCCCCC; margin-top: 3px; cursor: hand; float: left; }
  7. .button_bg2 { width: 84px; height: 22px; border-top: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; border-bottom: 0px solid #CCCCCC; margin-top: 3px; background: url(toplist/images/toplist_button.gif) repeat-x; cursor: hand; float: left; }
  8. -->
  9. </style>
  10. <!-- <div align="center" id="loading" style="width:{TABLEWIDTH};height:30px; background:url(toplist/images/loading.gif) no-repeat center;border:2px solid {BORDERCOLOR};margin-bottom:8px;"></div> -->
  11. <div align="center" id="loading"></div>
  12. <div id="toplistshow" style="display:none;width:{TABLEWIDTH};height:215px;border:1px solid {BORDERCOLOR};margin-bottom:8px;">
  13.         <div align="center" style="width:28%;height:215px;background:url(toplist/images/line_r.gif) repeat-y right;float:left;">
  14.                 <div align="center" style="width:100%;height:30px;background:url(toplist/images/toplist_head.gif) repeat-x;">
  15.                         <div style="height:30px;width:1px;border-right:1px solid #CCCCCC;float:right;"></div>
  16.                         <div style="padding-top:6px;"><b>รูปจากกระดาน</b></div>
  17.                 </div>
  18.                 <div style="margin:1px auto 5px auto;"><script language="JavaScript" src="toplist/focuspic.php"></script></div>
  19.         </div>
  20.         <div align="center" style="width:30%;background:url(toplist/images/line_r.gif) repeat-y right;float:left;">
  21.                 <div align="center" style="width:100%;height:26px;background:url(toplist/images/toplist_head.gif) repeat-x;border-bottom:1px solid #CCCCCC;">
  22.                         <div style="height:26px;width:1px;border-right:1px solid #CCCCCC;float:right;"></div>
  23.                         <div style="width:256px;">
  24.                                 <div id="show_1_button" class="button_bg2" style="display:block;border-left:1px solid #CCCCCC;cursor:hand;" onmouseover="changebg('show_1','show_2','show_3')">
  25.                                         <img src="toplist/images/forum_new.gif" style="margin:3px 0px 0px 3px;float:left;" /><b style="margin:2px 8px 0px 3px;float:left;">หัวข้อใหม่</b>
  26.                                 </div>
  27.                                 <div id="show_2_button" class="button_bg1" style="display:block;cursor:hand;" onmouseover="changebg('show_2','show_1','show_3')">
  28.                                         <img src="toplist/images/forum_re.gif" style="margin:3px 0px 0px 3px;float:left;" /><b style="margin:2px 8px 0px 3px;float:left;">ตอบล่าสุด</b>
  29.                                 </div>
  30.                                 <div id="show_3_button" class="button_bg1" style="display:block;cursor:hand;" onmouseover="changebg('show_3','show_1','show_2')">
  31.                                         <img src="toplist/images/forum_hot.gif" style="margin:3px 0px 0px 3px;float:left;" /><b style="margin:2px 8px 0px 3px;float:left;">ดูสูงสุด</b>
  32.                                 </div>
  33.                         </div>
  34.                 </div>
  35.                 <div align="left" style="width:100%;height:184px;line-height:18px;background:url(toplist/images/rank.gif) no-repeat top 5px;margin-top:4px;">
  36.                         <div id="show_1" style="margin:1px auto auto 30px;">
  37.                         <!-- กระทู้ใหม่ -->
  38.                         <!--{loop $new_post_threadlist $nthread}-->
  39.                                                         <!--{if $nthread[replies]}-->
  40.                                                                 <div style="overflow: hidden;height: 18px;width: 100%;"><a href="viewthread.php?tid=$nthread[tid]" $nthread['highlight'] title='กระทู้ล่าสุดจากกระดาน {LF}: $nthread[forumname]{LF}หัวข้อ: $nthread[subject] {LF}โพสโดย: $nthread[author]{LF}โพสเมื่อ: $nthread[date]{LF}ดูแล้ว: $nthread[views] คน {LF}ตอบแล้ว: $nthread[replies] คน{LF}ตอบล่าสุดเมื่อ: $nthread[lastreplytime]{LF}{lang lastpost}: $nthread[lastposter]'>$nthread[view_subject]</a></div>
  41.                                         <!--{else}-->
  42.                                                                 <div style="overflow: hidden;height: 18px;width: 100%;"><a href="viewthread.php?tid=$nthread[tid]" $nthread['highlight'] title='กระทู้ล่าสุดจากกระดาน {LF}: $nthread[forumname]{LF}หัวข้อ: $nthread[subject] {LF}โพสโดย: $nthread[author]{LF}โพสเมื่อ: $nthread[date]{LF}ดูแล้ว: $nthread[views] คน {LF}ตอบแล้ว: $nthread[replies] คน{LF}ตอบล่าสุดเมื่อ: ยังไม่มีการตอบ'>$nthread[view_subject]</a></div>
  43.                                                         <!--{/if}-->
  44.                                                 <!--{/loop}-->
  45.                         <!-- กระทู้ใหม่ -->
  46.                         </div>
  47.                         <div id="show_2" style="display:none;margin:1px auto auto 30px;">
  48.                         <!-- ตอบล่าสุด -->
  49.                         <!--{loop $new_reply_threadlist $rthread}-->
  50.                                                         <div style="overflow: hidden;height: 18px;width: 100%;"><a href="viewthread.php?tid=$rthread[tid]" $rthread['highlight'] title='ตอบล่าสุดจากกระดาน {LF}: $rthread[forumname]{LF}หัวข้อ: $rthread[subject]{LF}โพสโดย: $rthread[author]{LF}โพสเมื่อ: $rthread[date]{LF}ดูแล้ว: $rthread[views] คน{LF}ตอบแล้ว: $rthread[replies] คน{LF}ตอบล่าสุดเมื่อ: $rthread[lastreplytime]{LF}{lang lastpost}: $rthread[lastposter]'>$rthread[view_subject]</a></div>
  51.                                                 <!--{/loop}-->
  52.                         <!-- ตอบล่าสุด -->
  53.                         </div>
  54.                         <div id="show_3" style="display:none;margin:1px auto auto 30px;">
  55.                         <!-- ดูสูงสุด -->
  56.                         <!--{loop $new_hot_threadlist $mthread}-->
  57.                                                         <div style="overflow: hidden;height: 18px;width: 100%;"><a href="viewthread.php?tid=$mthread[tid]" $mthread['highlight'] title='กระทู้เด่นมาจากกระดาน {LF}: $mthread[forumname]{LF}หัวข้อ: $mthread[subject]{LF}โพสโดย: $mthread[author]{LF}โพสเมื่อ: $mthread[date]{LF}ดูแล้ว: $mthread[views] คน{LF}ตอบแล้ว: $mthread[replies] คน{LF}ตอบล่าสุดเมื่อ: $mthread[lastreplytime]{LF}{lang lastpost}: $mthread[lastposter]'>$mthread[view_subject]</a></div>
  58.                                                 <!--{/loop}-->
  59.                         <!-- ดูสูงสุด -->
  60.                         </div>
  61.                 </div>
  62.         </div>
  63.         <div align="center" style="height:215px;">
  64.                 <div style="width:100%;height:24px;background:url(toplist/images/toplist_head.gif) repeat-x;">
  65.                         <div style="height:30px;width:1px; solid #CCCCCC;float:right;"></div>
  66.                         <div style="padding-top:6px;"><b>ผู้สนับสนุน</div>
  67.                 </div>
  68.                 <div>
  69. <!-- Ads -->
  70. <script type="text/javascript">
  71. var varText = ""
  72. function addInfo(title,photourl,link){
  73. if(varText!=""){
  74. varText+="|||";
  75. }
  76. varText+=title+"|_|"+photourl+"|_|"+link;
  77. }
  78. linkarr = new Array();
  79. picarr = new Array();
  80. textarr = new Array();
  81. linkarr[1] = "http://www.cazdesign.com/forums/forum-21-1.html";
  82. picarr[1] = "http://www.cazdesign.com/forums/toplist/toplist_1.jpg";
  83. textarr[1] = "?1?PICPOST?1?";
  84. linkarr[2] = "http://www.gsmadvance.com";
  85. picarr[2] = "http://www.cazdesign.com/forums/toplist/toplist_2.jpg";
  86. textarr[2] = "?2?G S M ?2?";
  87. linkarr[3] = "http://www.gsmadvance.com";
  88. picarr[3] = "http://www.cazdesign.com/forums/toplist/toplist_3.jpg";
  89. textarr[3] = "?3?G S M ?3?";
  90. linkarr[4] = "http://www.toyota.co.th/red/th/index.asp";
  91. picarr[4] = "http://www.cazdesign.com/forums/toplist/toplist_4.jpg";
  92. textarr[4] = "?4?TOYOTA?4?";
  93. linkarr[5] = "http://www.hutch.co.th/ecard/index_th.jsp";
  94. picarr[5] = "http://www.cazdesign.com/forums/toplist/toplist_5.jpg";
  95. textarr[5] = "?5?HUTCH ?5?";

  96. addInfo(textarr[1],picarr[1],linkarr[1]);
  97. addInfo(textarr[2],picarr[2],linkarr[2]);
  98. addInfo(textarr[3],picarr[3],linkarr[3]);
  99. addInfo(textarr[4],picarr[4],linkarr[4]);
  100. addInfo(textarr[5],picarr[5],linkarr[5]);

  101. document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="395" height="185" id="01" align="middle">')
  102. document.write('<param name="allowScriptAccess" value="sameDomain" />')
  103. document.write('<param name="movie" value="http://www.cazdesign.com/forums/toplist/flash.swf?info='+varText+'" />')
  104. document.write('<param name="quality" value="high" />')
  105. document.write('<param name="bgcolor" value="#ffffff" /><param name="wmode" value="transparent" />')
  106. document.write('<embed src="{IMGDIR}/toplist/flash.swf" quality="high" bgcolor="#ffffff" width="410" height="200" name="01" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />')
  107. document.write('</object>')
  108. </script>
  109. <!-- Ads -->
  110. </div>
  111.         </div>








  112. </div>
  113. <script type="text/javascript" language="javascript">
  114.         document.getElementById('loading').style.display = 'none';
  115.         document.getElementById('toplistshow').style.display = '';
  116.         function changebg(obj1id,obj2id,obj3id){
  117.                 var obj1 = document.getElementById(obj1id + '_button');
  118.                 var obj2 = document.getElementById(obj2id + '_button');
  119.                 var obj3 = document.getElementById(obj3id + '_button');
  120.                 var obj4 = document.getElementById(obj1id);
  121.                 var obj5 = document.getElementById(obj2id);
  122.                 var obj6 = document.getElementById(obj3id);
  123.                 obj1.className = 'button_bg2';
  124.                 obj2.className = 'button_bg1';
  125.                 obj3.className = 'button_bg1';
  126.                 obj4.style.display = '';
  127.                 obj5.style.display = 'none';
  128.                 obj6.style.display = 'none';
  129.         }
  130. </script>
คัดลอกไปที่คลิปบอร์ด
ลองดู
ขออภัย! คุณไม่ได้รับสิทธิ์ในการดำเนินการในส่วนนี้ กรุณาเลือกอย่างใดอย่างหนึ่ง ลงชื่อเข้าใช้ | สมัครสมาชิก

รายละเอียดเครดิต

รายชื่อผู้กระทำผิด|Archiver|ดิสคัส ไทย Follow us: Become a fan on facebook. Follow us on Twitter.

GMT+7, 2024-11-15 00:52

Powered by Discuz! X3.4, Rev.66

Copyright © 2001-2021 Tencent Cloud. Licensed

ตอบกระทู้ ขึ้นไปด้านบน ไปที่หน้ารายการกระทู้