I have this block which i have been using on my phpnuke site for vwars, which I am now changing to postnuke, but i cant quite figure out what to change on it to make it postnuke compatible. Heres the code
Code
<?php
global $vwardb;
ob_start();
echo"<div align=\"center\"><strong>TFH Todays Actions "
. "</strong></div>"
."";
include("vwar/extra/today.php");
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"<div align=\"center\"><strong>TFH Gamers Online "
. "</strong></div>"
."";
include("vwar/extra/online.php");
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"<div align=\"center\"><strong>TFH Next Actions "
. "</strong></div>"
."";
echo "<marquee behavior='scroll' align='center' height='125' direction='up' scrollamount='2' scrolldelay='100' onmouseover='this.stop()' onmouseout='this.start()'> <div align=\"center\">";
include("vwar/extra/nextactions.php");
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"</marquee>";
echo"<div align=\"center\"><strong>TFH Last Actions "
. "</strong></div>"
."";
echo "<marquee behavior='scroll' align='center' height='125' direction='up' scrollamount='2' scrolldelay='100' onmouseover='this.stop()' onmouseout='this.start()'> <div align=\"center\">";
include("vwar/extra/lastactions.php");
echo"</marquee>";
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"<div align=\"center\"><strong>TFH Match Statistics "
. "</strong></div>"
."";
include("vwar/extra/records.php");
$output = ob_get_contents();
ob_end_clean();
$content = $output;
?>
global $vwardb;
ob_start();
echo"<div align=\"center\"><strong>TFH Todays Actions "
. "</strong></div>"
."";
include("vwar/extra/today.php");
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"<div align=\"center\"><strong>TFH Gamers Online "
. "</strong></div>"
."";
include("vwar/extra/online.php");
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"<div align=\"center\"><strong>TFH Next Actions "
. "</strong></div>"
."";
echo "<marquee behavior='scroll' align='center' height='125' direction='up' scrollamount='2' scrolldelay='100' onmouseover='this.stop()' onmouseout='this.start()'> <div align=\"center\">";
include("vwar/extra/nextactions.php");
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"</marquee>";
echo"<div align=\"center\"><strong>TFH Last Actions "
. "</strong></div>"
."";
echo "<marquee behavior='scroll' align='center' height='125' direction='up' scrollamount='2' scrolldelay='100' onmouseover='this.stop()' onmouseout='this.start()'> <div align=\"center\">";
include("vwar/extra/lastactions.php");
echo"</marquee>";
echo"<HR align=\"center\" width=\"75%\">"
."";
echo"<div align=\"center\"><strong>TFH Match Statistics "
. "</strong></div>"
."";
include("vwar/extra/records.php");
$output = ob_get_contents();
ob_end_clean();
$content = $output;
?>
Any ideas on what I need to change?
