I'm using this on my HTML pages, see a previous post. In FireFox the banners are not showing up. this is new, so IMO its one of the patches. Gio, you have any ideas?
You can see this by using FireFox and this URL:
http://www.autocareforum.com/buyersguide.html
The banners that you might see are Flash and they work fine. Its the Gif & Jpg that do not.
This is the code to display it.
Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('SKIP_SESSIONCREATE', 1);
define('NOCOOKIES', 1);
define('THIS_SCRIPT', 'rbs_blank');
$phrasegroups = array();
$specialtemplates = array();
$globaltemplates = array();
$actiontemplates = array();
require_once('./global.php');
$html = '<html>
<head>
<title>Rotating Banner System</title>
</head>
<style type=\"text/css\">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<body>
<!--@vbbanners:2@-->
</body>
</html>';
eval('print_output("' . $html . '");');
?>
Thanks,