| Author |
Message |
CTerrian |
|
Post subject: Adding HTML In Block
Posted: 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 |
|
|
| |
|
|
|
 |
mars |
|
Post subject: RE: Adding HTML In Block
Posted: 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 --> ";
?>
|
|
|
| |
|
|
|
 |
CTerrian |
|
|
Post subject:
Posted: Feb 20, 2008 - 11:40 PM
|
|
Joined: Jan 29, 2008
Posts: 7
Status: Offline
|
|
Thanks Mars!
Works perfectly!
You Da Man!
 |
|
|
| |
|
|
|
 |
CTerrian |
|
Post subject:
Posted: 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 --> |
|
|
| |
|
|
|
 |
mars |
|
Post subject:
Posted: 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>";
?>
|
|
|
| |
|
|
|
 |
|
|