<?
#################################################################################################
#
# project : phpBannerEx
# filename : footer.inc
# last modified by :
# e-mail : hide@address.com
# purpose : Footer to include
#
#################################################################################################
echo "<div class=\"proctime\"><br>";
if ($show_proctime) {
list($usec, $sec) = explode(" ",$proctime_start);
$proctime_start = $usec+$sec;
list($usec, $sec) = explode(" ",microtime());
$proctime_end = $usec+$sec;
$proctime = $proctime_end-$proctime_start;
echo get_msg("proctime",$lang).": ".substr($proctime,0,7)." ".get_msg("sec",$lang);
}
?>
<!-- BEGIN Your Footer Stuff here -->
<!-- END Your Footer Stuff here -->
</center>
</div>
</body>
</html>