Paste this in an empty file and call it as you like, e.g. rbs_html.php
PHP 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>
<body>
<!--@vbbanners:0@-->
</body>
</html>';
eval('print_output("' . $html . '");');
?>
Within the HTML, you call this script, for example:
HTML Code:
<html>
<head>
<title>Untitled</title>
</head>
<body>
<iframe src="rbs_html.php" width="468" height="85" scrolling="no"></iframe>
</body>
</html>
rbs_html.php should stay in the forum home to work properly.