AL8 Forum
   登錄註冊幫助


標題: [D5.0 & D5.5] 新手試發--左側四格(改自4.0)2007-8-15 00:15再修正
 c3762
 0007771
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 128

精華: 0

積分: 880 點

現金: 80 元

存款: 796 元

閱讀權限: 20

註冊: 2004-9-16

狀態: 離線
 
發表於 2007-6-29 16:03  資料  個人空間  短消息  加為好友 
新手試發--左側四格(改自4.0)2007-8-15 00:15再修正

原帖:  http://alan888.com/Discuz/viewth ... hlight=%A5%AA%AD%B1
5.0&5.5修改者:c3762
安裝有風險,請先備份需要修改的檔案
修改文件:index.php
修改模板:discuz.htm
演示:請看第2帖

bug修正:2007-6-29 17:14  前安裝請看第15帖
唔見左公告者請看第51帖

===================================================
先黎例牌野
1.打開index.php

$newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;

2.在下面加上
//新貼//
$hack_cut_str = 36; //修改標題顯示字數
$new_post_threadlist = array();
$nthread = array();
$colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid ORDER BY t.dateline DESC LIMIT 0, 10");
while($nthread = $db->fetch_array($query)) {
        $nthread['forumname'] = $nthread['name'];
        $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
$nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
        $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
if($nthread['highlight']) {
        $string = sprintf('%02d', $nthread['highlight']);
        $stylestr = sprintf('%03b', $string[0]);
        $nthread['highlight'] = 'style="';
        $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
        $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
        $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
        $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
        $nthread['highlight'] .= '"';
    } else {
        $nthread['highlight'] = '';
    }
        $new_post_threadlist[] = $nthread;
}
//新貼//
//新回覆
$hack_cut_str = 36; //修改標題顯示字數
$new_reply_threadlist = array();
$rthread = array();
$colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
$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 ORDER BY t.lastpost DESC LIMIT 0, 10");
while($rthread = $db->fetch_array($query)) {
        $rthread['forumname'] = $rthread['name'];
        $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
$rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
        $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
if($rthread['highlight']) {
        $string = sprintf('%02d', $rthread['highlight']);
        $stylestr = sprintf('%03b', $string[0]);
        $rthread['highlight'] = 'style="';
        $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
        $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
        $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
        $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
        $rthread['highlight'] .= '"';
    } else {
        $rthread['highlight'] = '';
    }
        $new_reply_threadlist[] = $rthread;
}
//回覆//

3.打開Discuz.htm
刪除以下文字
<div style="width: {TABLEWIDTH}; clear: both; overflow: hidden;">
<div class="left" style="line-height: 18px;">
<span class="bold"><!--{if $gid || !$discuz_uid}--><a href="$indexname">$bbname</a><!--{else}-->$discuz_user<!--{/if}-->
<!--{if $supe_status && $discuz_uid}-->
-
        <!--{if !$xspacestatus}-->
                <a href="$supe_siteurl/index.php?action/register" target="_blank">{lang supe_signin_xspace}</a>
        <!--{else}-->
                <a href="$supe_siteurl/index.php?action/space/uid/$discuz_uid" target="_blank">{lang supe_myxspace}</a>
        <!--{/if}-->
<!--{/if}-->
</span>
<br>
{lang credits}: <span class="bold smalltxt">$credits</span> <span id="creditlist">{lang credits_detail}<script type="text/javascript">menuregister(false, "creditlist", true)</script></span> / {lang index_status}:
<!--{if $validdays}-->
        <a href="member.php?action=groupexpiry"><span class="bold">$grouptitle</span>($validdays)</a>
<!--{else}-->
        <span class="bold">$grouptitle</span><!--{/if}-->
<!--{if $allowinvisible && $discuz_uid}-->{lang online_status}:
        <!--{if !empty($invisible)}-->
                <a href="member.php?action=switchstatus" title="{lang login_switch_normal_mode}">{lang login_invisible_mode}</a>
        <!--{else}-->
                <a href="member.php?action=switchstatus" title="{lang login_switch_invisible_mode}">{lang login_normal_mode}</a>
        <!--{/if}-->
<!--{/if}--><br>
{lang your_lastvisit} <span class="smalltxt">$lastvisittime</span><br>
</div>
<div class="right" style="line-height: 18px;">
<a href="search.php?srchfrom=$newthreads&searchsubmit=yes">{lang show_newthreads}</a> |
<!--{if $discuz_uid}-->
        <!--{if $allowuseblog}-->
                <a href="blog.php?uid=$discuz_uid" target="_blank">{lang blog}</a> |
        <!--{/if}-->
<!--{/if}-->
<a href="digest.php">{lang digest}</a> |
<a href="member.php?action=markread">{lang mark_read}</a>
<!--{if $rssstatus}--><a href="rss.php?auth=$rssauth" target="_blank"><img src="images/common/xml.gif" border="0" class="absmiddle" alt="{lang rss_subscribe_all}" /></a><!--{/if}-->
<br>
{lang total} <span class="smalltxt">$threads</span> {lang index_threads} / <span class="smalltxt">$posts</span> {lang index_posts} / {lang index_today} <span class="smalltxt">$todayposts</span> {lang index_posts}<br>
{lang total} <span class="smalltxt">$totalmembers</span> {lang index_members} / {lang welcome_newmember} <a href="viewpro.php?username=$memberenc"><span class="bold">$lastmember</span></a>
</div>
</div><br>
<!--{if empty($gid)}-->
        <!--{if !empty($announcements)}-->
                <div id="announcement" style="clear: both; width: {TABLEWIDTH}">$announcements</div>
                <script type="text/javascript">announcement();</script>
        <!--{/if}-->
        <!--{if $qihoo_status && $searchboxstatus}-->
                <div class="subtable" style="clear: both; width: {TABLEWIDTH}">
                <div class="right">
                <form method="post" action="search.php?srchtype=qihoo" onSubmit="this.target='_blank';">
                <input type="hidden" name="searchsubmit" value="yes">
                <input type="text" name="srchtxt" value="$qihoo_searchboxtxt" size="30" class="input" style="{BGCODE};" onmouseover="this.focus();this.value='';this.onmouseover=null;">
                <select name="stype"><option value="" selected>{lang qihoo_search_filltext}</option><option value="1">{lang qihoo_search_title}</option><option value="2">{lang qihoo_search_author}</option></select>
                <input name="searchsubmit" class="button" type="submit" value="{lang search}">
                </form>
                </div>
                <!--{if $qihoo_links['keywords']}-->
                        <span class="bold">{lang qihoo_hot_searches}</span>
                        <!--{loop $qihoo_links['keywords'] $link}-->
                                $link
                        <!--{/loop}-->
                <!--{/if}-->
                </div>
                <div class="subtable" style="clear: both; width: {TABLEWIDTH}">
                <div class="right">
                <!--{if $customtopics}-->
                        <span class="bold">{lang qihoo_custom_topics}</span>  $customtopics [<a href="###" onclick="window.open('misc.php?action=customtopics', '', 'width=320,height=450,resizable=yes,scrollbars=yes');">{lang edit}</a>]
                <!--{/if}-->
                </div>
                <!--{if $qihoo_links['topics']}-->
                        <span class="bold">{lang qihoo_topics}</span>
                        <!--{loop $qihoo_links['topics'] $url}-->
                                {$url}  
                        <!--{/loop}-->
                <!--{/if}-->
                </div>
        <!--{/if}-->
<!--{/if}-->


5.找
<!--{if !empty($newpmexists) || $announcepm}-->
        <div style="clear: both; margin-top: 5px" id="pmprompt">
        {template pmprompt}
        </div>
<!--{/if}-->

續第2帖

[ 本帖最後由 c3762 於 2007-8-15 21:58 編輯 ]




 AL8 Forum © All rights reserved.
頂部
 c3762
 0007771
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 128

精華: 0

積分: 880 點

現金: 80 元

存款: 796 元

閱讀權限: 20

註冊: 2004-9-16

狀態: 離線
 
發表於 2007-6-29 16:04  資料  個人空間  短消息  加為好友 
6.下面加入
<!--{if !empty($announcements)}-->
                <div id="announcement" style="clear: both; width: {TABLEWIDTH}">$announcements</div>
                <script type="text/javascript">announcement();</script>
        <!--{/if}-->
<table cellspacing="0" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center" style="table-layout: fixed">

  <!--左右分割開始前斷Start--><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="{ALTBG2}" align="center">
</p>
<tr>
    <td width="185" height="100%" valign="top" bgcolor="{ALTBG2}">
<center>
<!--論壇資料Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color: {HEADERTEXT}; font-weight: bold;" class="header">
              <p>論壇資料</td>
          </tr>
<tr>
      <td width="100%" align="left" bgcolor="{ALTBG2}">
<table border="0" width="100%" cellspacing="0" cellpadding="2">
  <tr>
    <td width="100%">
<a href="index.php"><strong>$bbname</strong></a><br>
<img src="images/go.gif">&nbsp;會員總數: <span class="bold">$totalmembers </span> 位<br>
<img src="images/go.gif">&nbsp;主題總數: <span class="bold">$threads </span>篇<br>
<img src="images/go.gif">&nbsp;帖子總數: <span class="bold">$posts </span> 篇<br>
<img src="images/go.gif">&nbsp;歡迎新會員: <a href="viewpro.php?username=$memberenc"><span class="bold">$lastmember</span></a><br>
<li><a href="search.php?srchfrom=$newthreads&searchsubmit=yes">查看新帖</a><br>
<li><a href="search.php?srchfrom=$newthreads&searchsubmit=yes">{lang show_mytopics}</a><br>
<li><a href="digest.php">精華區</a><br>
<li><a href="blog.php?uid=$discuz_uid" target="_blank">{lang blog}</a><br>
<li><a href="member.php?action=markread">標記已讀</a><br>
      </td>
    </tr>
  </table>
</td>
    </tr>
  </table>
<br>
<!--論壇資料End-->

<!--用戶資料及快速登陸Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color: {HEADERTEXT}; font-weight: bold;" class="header">
              <p>個人資料</td>
          </tr>
<tr>
      <td width="100%" align="left" bgcolor="{ALTBG2}">
<table border="0" width="100%" cellspacing="0" cellpadding="2">
  <tr>
    <td width="100%">
<p><!--{if !$discuz_uid}-->
<img src="images/go.gif">&nbsp;請先<a href="register.php">註冊</a>成為會員
<form method="post" name="login" action="logging.php?action=login">
<input type="hidden" name="formhash" value="{FORMHASH}">
<input type="hidden" name="referer" value="$referer">
<input type="hidden" name="cookietime" value="2592000"><br>
名稱: <input type="text" name="username" size="20" maxlength="40" tabindex="1"> <br>
{lang password}: <input type="password" name="password" size="20" tabindex="2"><br>
隱身: <select name="loginmode"><option value=""> {lang use_default}</option>
<option value="normal"> {lang login_normal_mode}</option>
<option value="invisible"> {lang login_invisible_mode}</option>
</select>
<br>
Cookies:
<select name=cookietime><option $task_checked selected value=0>不紀錄</option>
<option $hour_checked value=3600>{lang login_one_hour}</option>
<option $day_checked value=86400>{lang login_one_day}</option>
<option $month_checked value=2592000>{lang login_one_month}</option>
<option $year_checked value=31536000>{lang login_permanent}</option></select><br>
<center><input type="submit" name="loginsubmit" value="登入"></center><br>
<tr><td>{lang security_question} : <select name="questionid" tabindex="3">
<option value="0">{lang security_question_0}</option>
<option value="1">{lang security_question_1}</option>
<option value="2">{lang security_question_2}</option>
<option value="3">{lang security_question_3}</option>
<option value="4">{lang security_question_4}</option>
<option value="5">{lang security_question_5}</option>
<option value="6">{lang security_question_6}</option>
<option value="7">{lang security_question_7}</option><br>
</select>
<tr><td><input type="text" name="answer" size="18" tabindex="4">
<!--{if $seccodecheck}-->
&nbsp; &nbsp;{lang seccode} : <input type="text" name="seccodeverify" size="15" tabindex="3" maxlength="4" AUTOCOMPLETE="off"> <img src="seccode.php?sid=$sid" align="absmiddle"><br>
<!--{/if}-->
<br>
<input type="submit" name="loginsubmit" value="{lang submit}" tabindex="4"><br>
</td></form></tr>
<!--{else}-->

<tr><td><img src="images/go.gif">&nbsp;{lang index_status}: <!--{if $validdays}--><a href="member.php?action=groupexpiry">$grouptitle</span>($validdays)</a><!--{else}-->$grouptitle<!--{/if}--> <br>
<tr><td><img src="images/go.gif">&nbsp;用戶名: <span class="bold">$discuz_userss</span>
<!--{if $invisible}-->{lang login_invisible_mode}<!--{/if}-->/&nbsp;<a href="logging.php?action=logout">{lang logout}</a><br>
<tr><td><img src="images/go.gif">&nbsp;{lang credits}: <span class="bold">$credits</span>
<!--{loop $extcredits $id $credit}--><br>
<tr><td><img src="images/go.gif">&nbsp;$credit[title]: <span class="bold">$GLOBALS[extcredits.$id]</span> $credit[unit]
<!--{/loop}-->
<!--{/if}-->
<tr><td><img src="images/go.gif">&nbsp;IP: <span class="bold">$onlineip</span><br>
<tr><td><img src="images/go.gif">&nbsp;上次訪問: <span class="bold">$lastvisittime</span><br>
<tr><td><img src="images/go.gif">&nbsp;{lang timenow}: <span class="bold">$currenttime</span><br>
</td>
    </tr>
  </table>
</td>
    </tr>
  </table>
<br>
<!--用戶資料及快速登陸End-->

<!--最新主題Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color: {HEADERTEXT}; font-weight: bold;" class="header">
              <p>最新主題</td>
          </tr>
<tr bgcolor="{ALTBG2}">
<td><!--{loop $new_post_threadlist $nthread}-->
<!--{if $nthread[replies]}-->
<img src="images/go.gif">&nbsp;<a href="redirect.php?tid=$nthread[tid]&goto=newpost" title="最新話題 {LF}{lang forum}: $nthread[forumname]{LF}{lang subject}: $nthread[subject]{LF}{lang author}: $nthread[author]{LF}發表{lang time}: $nthread[date]{LF}{lang replies}: $nthread[replies] 次{LF}最後回覆: $nthread[lastreplytime]{LF}{lang lastpost}: $nthread[lastposter]">$nthread[view_subject]</a>
<!--{else}-->
<img src="images/go.gif">&nbsp;<a href="redirect.php?tid=$nthread[tid]&goto=newpost" title="最新話題 {LF}{lang forum}: $nthread[forumname]{LF}{lang subject}: $nthread[subject]{LF}{lang author}: $nthread[author]{LF}發表{lang time}: $nthread[date]{LF}{lang replies}: 暫時沒有回覆">$nthread[view_subject]</a><!--{/if}-->
$nthread[multipage]<br>
<!--{/loop}--></td>
</tr>
</table>
<br>
<!--最新主題End-->

<!--最新回覆Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color:  {HEADERTEXT}; font-weight: bold;" class="header">
              <p>最新回覆</td>
          </tr>
<tr bgcolor="{ALTBG2}">
<td><!--{loop $new_reply_threadlist $rthread}-->
<img src="images/go.gif">&nbsp;<a href="redirect.php?tid=$rthread[tid]&goto=lastpost#lastpost" title="最新回覆 {LF}{lang forum}: $rthread[forumname]{LF}{lang subject}: $rthread[subject]{LF}{lang author}: $rthread[author]{LF}發表{lang time}: $rthread[date]{LF}{lang replies}: $rthread[replies] 次{LF}最後回覆: $rthread[lastreplytime]{LF}{lang lastpost}: $rthread[lastposter]">$rthread[view_subject]</a>
$rthread[multipage]<br>
<!--{/loop}--></td>
</tr>
</table>
<br>
<!--最新回覆End-->

<!--論壇選項及快速搜尋Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color:  {HEADERTEXT}; font-weight: bold;" class="header">
              <p>快速搜尋</td>
          </tr>
<form method="post" action="search.php">
<tr bgcolor="{ALTBG2}" align="center">
<td align="center">
<p align="left">
        <input type="hidden" name="formhash" value="{FORMHASH}">
        <table cellspacing="0" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center">
        <tr><td>
        <p align="center">{lang search_keywords}<br><input type="text" name="srchtxt" size="20" maxlength="40"></td></tr></table>
        <center><input type="submit" name="searchsubmit" value="{lang submit}"></center>
       
</td></tr></form>
  </table>
<br>
<!--論壇選項及快速搜尋End-->

<!--計數器Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color: {HEADERTEXT}; font-weight: bold;" class="header">
              <p>計數器</td>
          </tr>
<tr>
      <td width="100%" bgcolor="{ALTBG2}">
<img src="images/go.gif">&nbsp;在線人數: <span class="bold">$onlinenum</span>($guestcount 遊客)<br>
<img src="images/go.gif">&nbsp;最高紀錄: <span class="bold">$onlineinfo[0]</span><br>
<img src="images/go.gif">&nbsp;今日到訪會員: <span class="bold">$totalmembers</span>
      </td>
    </tr>
  </table>
<br>
<!--計數器End-->

<!--聯盟論壇Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color: {HEADERTEXT}; font-weight: bold;" class="header">
              <p>聯盟論壇</td>
          </tr>
<tr>
     <td width="100%" bgcolor="{ALTBG2}">

<MARQUEE behavior= "scroll" align= "center" direction= "up" height="200" scrollamount= "2" scrolldelay= "20" onmouseover='this.stop()' onmouseout='this.start()'>
<center>
<!--{loop $_DCACHE['forumlinks'] $flink}-->
<br>
<!--{if $flink['type'] == 1}-->
$flink[content]<br>
<!--{else}-->
$flink[content]<br>
<!--{/if}-->
<!--{/loop}-->
<br><br>
</center></MARQUEE>
      </td>
    </tr>
  </table>
<br>
<!--聯盟論壇End-->
</center>
</td>
<td height="100%" valign="top">

<!--左右分割開始前斷End-->

7.找
<div class="tableborder" style="width: 300px; padding: 9px; background-color: {ALTBG1}"><span class="smalltxt">
<img src="{IMGDIR}/red_forum.gif" class="absmiddle" alt="" />&nbsp; {lang forum_newposts}&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<img src="{IMGDIR}/forum.gif" class="absmiddle" alt="" />&nbsp; {lang forum_nonewpost}</span></div>

8.面加入


8.把go.gif 放入images
完成
=======================================================
不喜歡聯盟論壇的話,把以下刪除
<!--聯盟論壇Start-->
<table border="0" width="94%" cellspacing="0" cellpadding="3" style="border: 1 solid #aab6ba" valign=top>
          <tr>
            <td width="100%" align="left" bgcolor="{BORDERCOLOR}" style="font-family: Tahoma, Verdana; font-size: 12px; color: {HEADERTEXT}; font-weight: bold;" class="header">
              <p>聯盟論壇</td>
          </tr>
<tr>
     <td width="100%" bgcolor="{ALTBG2}">

<MARQUEE behavior= "scroll" align= "center" direction= "up" height="200" scrollamount= "2" scrolldelay= "20" onmouseover='this.stop()' onmouseout='this.start()'>
<center>
<!--{loop $_DCACHE['forumlinks'] $flink}-->
<br>
<!--{if $flink['type'] == 1}-->
$flink[content]<br>
<!--{else}-->
$flink[content]<br>
<!--{/if}-->
<!--{/loop}-->
<br><br>
</center></MARQUEE>
      </td>
    </tr>
  </table>
<br>
<!--聯盟論壇End-->


[ 本帖最後由 c3762 於 2007-8-15 00:27 編輯 ]



 附件: 您所在的用戶組無法下載或查看附件



 AL8 Forum © All rights reserved.
頂部
 ntf
 0043014
Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7

頭銜: Moderator

自述: ntf

帖子: 3736

精華: 0

積分: 6693 點

現金: 0 元

存款: 38423 元

閱讀權限: 100

註冊: 2006-4-7

狀態: 離線
 
發表於 2007-6-29 16:06  資料  個人空間  短消息  加為好友 
演示




 AL8 Forum © All rights reserved.
頂部
 你看不見我
 0061436
Rank: 5Rank: 5Rank: 5Rank: 5Rank: 5
點擊查看 你看不見我 的詳細資料

頭銜: King

帖子: 632

精華: 0

積分: 6190 點

現金: 0 元

存款: 39 元

閱讀權限: 30

註冊: 2006-12-19

來自: 你的頭腦

狀態: 離線
 
發表於 2007-6-29 16:08  資料  個人空間  短消息  加為好友  添加 你看不見我 為MSN好友 通過MSN和 你看不見我 交談 Yahoo!
回覆 #3 ntf 的帖子

同意




 AL8 Forum © All rights reserved.
頂部
 szehim2009
 0058459
Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6

頭銜: Forum Legend

自述: PHP-新手

帖子: 1086

精華: 0

積分: 8387 點

現金: 17 元

存款: 0 元

閱讀權限: 70

註冊: 2006-11-20

來自: Hong Kong

狀態: 離線
 
發表於 2007-6-29 16:08  資料  個人空間  主頁 短消息  加為好友  添加 szehim2009 為MSN好友 通過MSN和 szehim2009 交談
回覆 #2 c3762 的帖子

Just support~




 AL8 Forum © All rights reserved.
頂部
 c3762
 0007771
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 128

精華: 0

積分: 880 點

現金: 80 元

存款: 796 元

閱讀權限: 20

註冊: 2004-9-16

狀態: 離線
 
發表於 2007-6-29 16:14  資料  個人空間  短消息  加為好友 
QUOTE:
原帖由 ntf 於 2007-6-29 16:06 發表
演示

抱歉,我頭先未post完,
已補上演示




 AL8 Forum © All rights reserved.
頂部
 rextsang
 0045651
Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6
點擊查看 rextsang 的詳細資料

頭銜: Forum Legend

暱稱: Moderator

自述: 我唔係板主

帖子: 11190

精華: 0

積分: 3380 點

現金: 0 元

存款: 41568 元

閱讀權限: 70

註冊: 2006-5-26

狀態: 離線
 
發表於 2007-6-29 16:20  資料  個人空間  短消息  加為好友 
先推,後試




#非黃金廣告位
 AL8 Forum © All rights reserved.
頂部
 靈魂0
 0071380
Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6

頭銜: Forum Legend

帖子: 1556

精華: 0

積分: 9680 點

現金: 802 元

存款: 4128 元

閱讀權限: 70

註冊: 2007-3-28

來自: Mega-I

狀態: 離線
 
發表於 2007-6-29 16:29  資料  個人空間  主頁 短消息  加為好友  添加 靈魂0 為MSN好友 通過MSN和 靈魂0 交談
Support!!!




 AL8 Forum © All rights reserved.
頂部
 瑋少
 0040547
Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6

頭銜: Forum Legend

帖子: 1568

精華: 0

積分: 8161 點

現金: 532 元

存款: 6349 元

閱讀權限: 70

註冊: 2006-2-25

來自: 超人氣討論區

狀態: 離線
 
發表於 2007-6-29 16:30  資料  個人空間  主頁 短消息  加為好友 
有冇網站演示




 AL8 Forum © All rights reserved.
頂部
 c3762
 0007771
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 128

精華: 0

積分: 880 點

現金: 80 元

存款: 796 元

閱讀權限: 20

註冊: 2004-9-16

狀態: 離線
 
發表於 2007-6-29 16:33  資料  個人空間  短消息  加為好友 
QUOTE:
原帖由 瑋少 於 2007-6-29 16:30 發表
有冇網站演示

抱歉,由於我的是私人論壇,不便公開
演示請看第2帖




 AL8 Forum © All rights reserved.
頂部
 patrickho
 0044259
Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6

頭銜: Forum Legend

自述: 特派潛水員

帖子: 1965

精華: 0

積分: 160 點

現金: 0 元

存款: 9417 元

閱讀權限: 70

註冊: 2006-4-29

狀態: 離線
 
發表於 2007-6-29 16:53  資料  個人空間  主頁 短消息  加為好友  添加 patrickho 為MSN好友 通過MSN和 patrickho 交談
用直排效果唔錯
鐘意就入黎睇下
freetalk.webhop.net
支持樓主
別外想問
邊度可以改底色
同限制最新主題及最新回覆字數,字數太長唔靚
仲有
<img src="images/go.gif"> 會員總數: <span class="bold">1$totalmembers </span> 位<br>
<img src="images/go.gif"> 主題總數: <span class="bold">3$threads </span>篇<br>
<img src="images/go.gif"> 帖子總數: <span class="bold">2$posts </span> 篇<br>
變左數字大左

[ 本帖最後由 patrickho 於 2007-6-29 17:07 編輯 ]




 AL8 Forum © All rights reserved.
頂部
 fungfung36
 0063688
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 153

精華: 0

積分: 1650 點

現金: 0 元

存款: 203 元

閱讀權限: 20

註冊: 2007-1-11

狀態: 離線
 
發表於 2007-6-29 16:57  資料  個人空間  短消息  加為好友 
QUOTE:
原帖由 c3762 於 2007-6-29 16:33 發表

抱歉,由於我的是私人論壇,不便公開
演示請看第2帖


Sorry??

Is this??         

http://bbs2.c3762.com/index.php?styleid=23&sid=phTYdH




 AL8 Forum © All rights reserved.
頂部
 c3762
 0007771
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 128

精華: 0

積分: 880 點

現金: 80 元

存款: 796 元

閱讀權限: 20

註冊: 2004-9-16

狀態: 離線
 
發表於 2007-6-29 17:06  資料  個人空間  短消息  加為好友 
QUOTE:
原帖由 fungfung36 於 2007-6-29 16:57 發表

Sorry??
Is this??         
http://bbs2.c3762.com/index.php?styleid=23&sid=phTYdH

咁都俾你搵到-.-




 AL8 Forum © All rights reserved.
頂部
 c3762
 0007771
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 128

精華: 0

積分: 880 點

現金: 80 元

存款: 796 元

閱讀權限: 20

註冊: 2004-9-16

狀態: 離線
 
發表於 2007-6-29 17:10  資料  個人空間  短消息  加為好友 
QUOTE:
原帖由 patrickho 於 2007-6-29 16:53 發表
用直排效果唔錯
鐘意就入黎睇下
freetalk.webhop.net
支持樓主
別外想問
邊度可以改底色
同限制最新主題及最新回覆字數,字數太長唔靚

佢個底色係跟返你個風格預設的...
字數請看第2步所加入的文字,
內有註明