The code I am using for including in the footer is

PHP Code

<?php
if (!defined('UBB_MAIN_PROGRAM')) define('UBB_MAIN_PROGRAM',1);
$style_side="";$tbopen="";$tbclose="";

$wrapper_id = $style_array['wrappers'];				 

$tbopen = $wrappers[$wrapper_id]['open'];
$tbclose = $wrappers[$wrapper_id]['close'];   

echo <<<EOF
<table width="100%" border="0" align="center">
<tr>
<td valign="top">
EOF;
include("{$config['FULL_PATH']}/languages/english/generic.php");
include("{$config['FULL_PATH']}/cache/online_now.php");
echo <<<EOF
</td>
</tr>
</table>
EOF;
?>


You just need to add it where you wish for it to be displayed.