Portal Themes, PHPnuke Themes and PostNuke themes Themes Home Page Profile Free Nuke theme Downloads Nuke theme Support Forums Nuke Themes Store
spacer image spacer image
Featured
Call of Duty 4 Nuke Theme

Call of Duty 4 Nuke Theme

Call of Duty 4 PHPNuke Theme, Call of Duty 4 PostNuke Theme, Call of Duty 4 Evo Theme, Call of Duty ...

$15.00
Enter Store ]
spacer image
Main Menu
spacer image
Site Status
spacer image Welcome Guest
Join us!
spacer image
spacer imagespacer imagespacer image
spacer image
Registration is free and gives full access to site
spacer image
spacer image Register
spacer image Login:
User:

spacer image
Password:

spacer image
Remember me
spacer image
spacer imageMembers:
Last: Today New:0
Last: Yesterday:0
Last: Total:7536
Last: Last:
maxfoot
Members: Online
Members: Members:0
Guests: Guests:46
Total: Total:46
spacer image Online Members
No online members
spacer image
Past News
Older articles
spacer image


Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
CTerrianOffline
Post subject: Adding HTML In Block  PostPosted: Feb 20, 2008 - 10:11 PM



Joined: Jan 29, 2008
Posts: 7

Status: Offline
I'm trying to add some HTML to a Block, from GameTracker. They provide the code for my game server stats.

<!-- Start GameTracker Banner -->
<iframe src="http://cache.www.gametracker.com/components/html0/?host=69.65.13.82:27015&width=180&height=547&bgColor=333333&titleBgColor=222222&borderColor=555555&fontColor=CCCCCC&titleColor=FF9900&linkColor=FFCC00&borderLinkColor=222222&showMap=1&showCurrPlayers=1&showTopPlayers=1&showBlogs=0" frameborder="0" scrolling="no" width="180" height="547"></iframe>
<!-- End GameTracker Banner -->


When I created the Block, and copy and pasted the above, and it shows up as just code in a wide block.
I know this can be done because I've seen it at other sites using php.


I'm using "Team Fortress 2 Nuke theme"
(Item# DMTF2)
PHP-Nuke
PHP Version 5.2.5

CT
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject: RE: Adding HTML In Block  PostPosted: Feb 20, 2008 - 10:29 PM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
Create a file called block-gametracker.php in the blocks folder with the following code in it.

Code:

<?php
if (eregi("block-gametracker.php",$PHP_SELF)) {
    Header("Location: index.php");
    die();
}
$content  =  "<!-- Start GameTracker Banner -->";
$content  .= "<iframe src=\"http://cache.www.gametracker.com/components/html0/?host=69.65.13.82:27015&width=160&height=547&bgColor=333333&titleBgColor=222222&borderColor=555555&fontColor=CCCCCC&titleColor=FF9900&linkColor=FFCC00&borderLinkColor=222222&showMap=1&showCurrPlayers=1&showTopPlayers=1&showBlogs=0\" frameborder=\"0\" scrolling=\"no\" width=\"160\" height=\"547\"></iframe>";
$content  .= "<!-- End GameTracker Banner --> ";
?>
 
 View user's profile Send private message  
Reply with quote
CTerrianOffline
19 Post subject:   PostPosted: Feb 20, 2008 - 11:40 PM



Joined: Jan 29, 2008
Posts: 7

Status: Offline
Thanks Mars!
Works perfectly!

You Da Man!
Cool
 
 View user's profile Send private message  
Reply with quote
CTerrianOffline
Post subject:   PostPosted: Feb 27, 2008 - 02:24 PM



Joined: Jan 29, 2008
Posts: 7

Status: Offline
Can you provide me the code for having 2 GameTracker stats, side by side, in one block?

Here's the HTML provided by GameTracker:
<!-- Start GameTracker Banner -->
<iframe src="http://cache.www.gametracker.com/components/html0/?host=69.65.13.83:27015&width=200&height=547&bgColor=333333&titleBgColor=222222&borderColor=555555&fontColor=CCCCCC&titleColor=FF9900&linkColor=FFCC00&borderLinkColor=222222&showMap=1&showCurrPlayers=1&showTopPlayers=1&showBlogs=0" frameborder="0" scrolling="no" width="200" height="547"></iframe>
<!-- End GameTracker Banner -->
<!-- Start GameTracker Banner -->
<iframe src="http://cache.www.gametracker.com/components/html0/?host=69.65.13.82:27015&width=200&height=547&bgColor=333333&titleBgColor=222222&borderColor=555555&fontColor=CCCCCC&titleColor=FF9900&linkColor=FFCC00&borderLinkColor=222222&showMap=1&showCurrPlayers=1&showTopPlayers=1&showBlogs=0" frameborder="0" scrolling="no" width="200" height="547"></iframe>
<!-- End GameTracker Banner -->
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject:   PostPosted: Feb 27, 2008 - 11:17 PM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
Code:

<?php
if (eregi("block-gametracker.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}   
$title = "Game Tracker";

$content  =  "<table width=\"400\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
$content  .= " <tr>";
$content  .= "<td valign=\"top\"><!-- Start GameTracker Banner -->";
$content  .= "<iframe src=\"http://cache.www.gametracker.com/components/html0/?host=69.65.13.83:27015&width=200&height=547&bgColor=333333&titleBgColor=222222&borderColor=555555&fontColor=CCCCCC&titleColor=FF9900&linkColor=FFCC00&borderLinkColor=222222&showMap=1&showCurrPlayers=1&showTopPlayers=1&showBlogs=0\" frameborder=\"0\" scrolling=\"no\" width=\"200\" height=\"547\"></iframe>";
$content  .= "<!-- End GameTracker Banner --></td>";
$content  .= "<td valign=\"top\"><!-- Start GameTracker Banner -->";
$content  .= "<iframe src=\"http://cache.www.gametracker.com/components/html0/?host=69.65.13.82:27015&width=200&height=547&bgColor=333333&titleBgColor=222222&borderColor=555555&fontColor=CCCCCC&titleColor=FF9900&linkColor=FFCC00&borderLinkColor=222222&showMap=1&showCurrPlayers=1&showTopPlayers=1&showBlogs=0\" frameborder=\"0\" scrolling=\"no\" width=\"200\" height=\"547\"></iframe>";
$content  .= "<!-- End GameTracker Banner --></td>";
$content  .= "</tr>";
$content  .= "</table>";
?>
 
 View user's profile Send private message  
Reply with quote
Display posts from previous:     
Jump to:  
All times are GMT - 5 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2006 The PNphpBB Group
Credits
spacer image spacer image

Welcome to www.PortalThemes.com, Your #1 Source for

Zikula Themes

,

PHP-Nuke themes

,

MD-Pro Themes

,

Nuke Evolution Themes

,

Platinum Nuke Themes

,

Xanthia Themes

,

AutoThemes and

Joomla Templates
World of Warcraft and Blizzard Entertainment are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. These terms and all related materials, logos, and images are copyright Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment
SiteMap SiteMap 2 SiteMap 3