![]() |
|
#1
|
|||
|
|||
|
I have recently added a clan wars module to my website. In the package there is a php code that is used to create a forum widget. I use vBadvanced and need the php code to be converted to a bb code so I can create a new module for the home page. Could someone help convert this code or give me some directions on how this could be done? Thank you in advance for your help and assistance.
global $db; $wconf = $db->fetch_array($db->query_read("SELECT colorbox, formatblock FROM ".TABLE_PREFIX."clan_wars_config")); $lastwars = "<center><table cellpadding='0' cellspacing'0' border='0' class='lastwarstable' width='90%'>"; $result5 = $db->query_read("SELECT opp_tag, wid, wardate FROM ".TABLE_PREFIX."clan_wars WHERE status='0' AND active='1' ORDER BY wardate ASC LIMIT 5"); if($db->num_rows($result5) > 0){ $lastwars .= "<tr> <td align='left' colspan='2'><b>Upcoming Wars</b></td> </tr>"; while($row5 = $db->fetch_array($result5)){ $wid = $row5['wid']; $opp_tag = $row5['opp_tag']; $wardate = $row5['wardate']; $lastwars .= "<tr> <td align='left'><a href='clanwars.php?do=Details&wid=$wid'>$opp_tag</a></td> <td width='20%' align='center'><b>".date($wconf['formatblock'], $wardate)."</b></td> </tr>"; } } //Last Wars $result6 = $db->query_read("SELECT opp_tag, wid, opp_score, our_score FROM ".TABLE_PREFIX."clan_wars WHERE status='1' AND active='1' ORDER BY wardate DESC LIMIT 5"); if($db->num_rows($result6) > 0){ $lastwars .= "<tr> <td align='left' colspan='2'><b>Last Wars</b></td> </tr>"; while($row5 = $db->fetch_array($result6)){ $wid = $row5['wid']; $opp_tag = $row5['opp_tag']; $our_score = $row5['our_score']; $opp_score = $row5['opp_score']; $wconf = $db->fetch_array($db->query_read("SELECT colorbox FROM ".TABLE_PREFIX."clan_wars_config")); if($wconf['colorbox']){ //Colored boxes if ($our_score > $opp_score) { $tdcolor ='#009900'; }else if ($our_score < $opp_score) { $tdcolor ='#990000'; }else { $tdcolor ='#3333FF'; } $tdcolor = 'style="background:'.$tdcolor.' url();"'; $fontcolor ='#FFFFFF'; }else{ //Colored Text if ($our_score > $opp_score){ $fontcolor = "#009900"; }elseif($our_score < $opp_score){ $fontcolor = "990000"; }else{ $fontcolor = "#3333FF"; } $tdcolor =''; } $lastwars .= "<tr> <td align='left'><a href='clanwars.php?do=Details&wid=$wid'>$opp_tag</a></td> <td width='20%' $tdcolor align='center'><font color='$fontcolor'><b>$our_score/$opp_score</b></font></td> </tr>"; } } $lastwars .= "</table></center>"; $output = $lastwars; |
|
#2
|
||||
|
||||
|
Converting PHP to BB code wouldn't even be remotely possible, so I think you're misunderstanding what BB code is. BB code is just what's used for formatting forum posts (bold, italic, etc), nothing more.
To create a module out of that code, you would need to create a new PHP file and then follow the instructions from our users manual to add a new PHP file module. http://www.vbadvanced.com/membersare...tid=4&pageid=2
__________________
Frequently Asked Questions CMPS Users Manual For vBadvanced software assistance, please use the support forums. Unsolicted PMs, IMs, and email will not be responded to. If you have a non-software related question or problem with your account, please submit a support ticket. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I add a PayPal button code to a CMPS BB Code Page? | fishingfool | "How Do I..." Questions | 5 | 03-11-2011 10:38 AM |
| Unable to put HTML code in my BB code editor | bouncer222 | Troubleshooting & Problems | 2 | 11-15-2009 01:01 PM |
| Problem with code in filesaveas code | Johny_Kale | Troubleshooting & Problems | 1 | 10-06-2008 11:45 AM |
| Form Code vs BB Code | x-gameservers | Troubleshooting & Problems | 1 | 01-05-2007 12:48 PM |
| where do I put the code | jmtamez | Troubleshooting & Problems | 8 | 06-23-2006 06:52 PM |