Thread: How Can I
View Single Post
  #1  
Old 08-16-2009, 09:25 PM
Hell Bomb Hell Bomb is offline
 
Join Date: Jun 2009
Posts: 385
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How Can I

My only real question is how can i make this change so it stays with the style of each template that is being used instead of me having to draw the individual files?

Code:
<?php
// this is for the master section, 86 = starcraft
// http://www.choasgaming.com/forums/forumdisplay.php?f=86
$id93 = 86;
echo '
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="http://www.choasgaming.com/forums/grunged/misc/cat_title_bg.gif">
    <tr>
<td width="22" background="http://www.choasgaming.com/forums/grunged/misc/cat_title_bg.gif"><img src="http://www.choasgaming.com/forums/grunged/misc/cat_title_left.gif" width="22" height="31"></td>
<td background="http://www.choasgaming.com/forums/grunged/misc/cat_title_left_bg.gif" style="background-repeat:no-repeat;">
    <font class="container">Starcraft Section</font></td>
    <td background="http://www.choasgaming.com/forums/grunged/misc/cat_title_bg.gif">
<div align="right"><a style="float:right" href="#top" onclick="return toggle_collapse("forumbit_84")"><img id="collapseimg_forumbit_84" src="http://www.choasgaming.com/forums/grunged/buttons/collapse_tcat.gif" alt="" border="0" /></a>
    </div></td>
<td width="21" background="http://www.choasgaming.com/forums/grunged/misc/cat_title_bg.gif"><div align="right"><img src="http://www.choasgaming.com/forums/grunged/misc/cat_title_right.gif" width="21" height="31"></div></td>
    </tr>
    </table>
    <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
    <tbody id="collapseobj_forumbit_84" style="">
    <tr align="center">
    <td class="thead" width="50">&nbsp;</td>
    <td class="thead" align="left">Forum</td>
    <td class="thead" width="200">Last Post</td>
    <td class="thead" width="40">Threads</td>
    <td class="thead" width="40">Posts</td>
    <td class="thead">Moderator</td>
    </tr>
    <tr align="center"><tr align="center">
    <td class="alt1Active" align="left" id="f86">
    <div>
    <a href="forumdisplay.php?f=86"><strong>Starcraft</strong></a>
    </div>
<div class="smallfont" style="margin-top:6px"><strong>Sub-Forums</strong>: <table border="0" cellpadding="0" cellspacing="0" width="100%" align="center" >
    <tr valign="top">
';
$counter = -1;
$array = array();
$querya = "SELECT * FROM forum WHERE parentid = " . $id93;
$resulta = mysql_query($querya) or die(mysql_error());

while($rowa = mysql_fetch_array($resulta)){
    $counter = $counter + 1;
    $array[$counter] = $rowa[lastpost];

    echo '
 <tr><td style="text-transform:none;font-size:13px;white-space:nowrap;" width="100%"> <img class="inlineimg" src="http://www.choasgaming.com/forums/grunged/statusicon/subforum_old.gif" alt="" border="0" id="forum_statusicon_' . $rowa["forumid"] . '" /> <a href="forumdisplay.php?f=' . $rowa["forumid"] . '">' . $rowa["forumid"] . '</a></td></tr>
    ';
}
echo '
    <td>&nbsp;</td>
    </table></div>
    </td>
    <td class="alt2" nowrap="nowrap" width="175">
    <div class="smallfont" align="">
    <div>
    <span style="white-space:nowrap">
    <img class="inlineimg" src="http://www.choasgaming.com/forums/images/icons/icon1.gif" alt="" border="0" />
';
$id2 = max ($array);
$queryb = 'SELECT * FROM forum WHERE lastpost = '. $id2;
$resultb = mysql_query($queryb) or die(mysql_error());
while($rowb = mysql_fetch_array($resultb)){
    $short1 = strlen($rowb["lastthread"]);
    if ($short1 > 25){
        $short1 = substr($rowb["lastthread"], 0, 25);
        $short = $short1 . "...";
    }else {
        $short = $rowb[lastthread];
    }

    echo '
 <a href="showthread.php?goto=newpost&amp;t=' . $rowb["lastthreadid"] . '" style=white-space:nowrap title="Go to first unread post in thread '.$rowb[lastthread].'">
        <strong>' . $short . '</strong></a>
        </span>
        </div>
<div style="white-space:nowrap; float:"> by <a href="member.php?find=lastposter&amp;f=' . $rowb[forumid] . '" rel="nofollow">' . $rowb[lastposter] . '</a>
        </div>
        <div align="" style="white-space:nowrap">
        2 Days Ago
<a href="showthread.php?p=' . $rowb[lastthreadid] . '#post' . $rowb[lastthreadid] . '"><img class="inlineimg" src="http://www.choasgaming.com/forums/grunged/buttons/lastpost.gif" alt="Go to last post" border="0" /></a>
        </div>
        </div>
        </td>
        <td class="alt1" width="65">25</td>
        <td class="alt2" width="65">69</td>
        <td class="alt1" width="120"><div class="smallfont">&nbsp;</div></td>    
        </tr>
        </tbody>
        </table>
    ';
}
?>
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01182 seconds
  • Memory Usage 1,799KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete