Previous Thread
Next Thread
Print Thread
Rate Thread
Joined: Mar 2003
Posts: 118
Journeyman
Journeyman
Offline
Joined: Mar 2003
Posts: 118
I took your Mod and instead of putting the display in the ubbt.inc.php file I put it into the header.php include file. This way it shows up on the top right of my screen where I have blank space anyways.

Here is what my /includes/header.php file looks like for anyone else interested. I did change some table properties in the header.php and in the Mod to get this how I wanted it to look. I took out the table properties in the Mod all together since it was going into a table already.

You can look on my website to see how it looks.

Code
  <br /><table border="0" cellpadding="1" cellspacing="0" width="95%" class="tablesurround" align="center"> <br /><tr> <br /><td align="center"> <br /><table border="0" cellpadding="1" cellspacing="0" width="100%" class="tableborders" align="center"> <br /><tr> <br /><td align="center"> <br /><table border="0" cellpadding="0" cellspacing="0" width="70%" align="left"> <br /><tr> <br /><img src="http://www.tampainsider.com/images/tampains_logo.gif"><br /></tr> <br /><br /><table border="0" cellpadding="0" cellspacing="0" width="30%"><br /><tr valign="middle"><br /><br /><?<br />	$boardkeyword = "banners";<br />	<br /><br />// -----------------------------------------------<br />// End of variables - do not edit below this line<br /><br /><br /><br />// ---------------<br />// Lets pull a random banner ad - by JoshPet<br /><br />	if ($config['banners']) {<br />		$query = "<br />			SELECT B_Subject,B_Body<br />			FROM {$config['tbprefix']}Posts<br />			WHERE B_Board = '$boardkeyword'<br />			AND B_Number = {$config['banners']}<br />		";<br />	}<br />	else {<br />		$query = "<br />			SELECT COUNT(*)<br />			FROM {$config['tbprefix']}Posts<br />			WHERE B_Board = '$boardkeyword'<br />		";<br />		$sth = $dbh -> do_query($query);<br />	   list($totalcount) = $dbh -> fetch_array($sth);<br />   	   $dbh -> finish_sth($sth);<br /><br />		$RandNumber = 0;<br />		if ($totalcount > 1) {<br />			$RandNumber = rand(0,($totalcount -1));<br />		}			<br /><br />		$query = "<br />			SELECT B_Subject,B_Body<br />			FROM {$config['tbprefix']}Posts<br />			WHERE B_Board = '$boardkeyword'<br />			LIMIT $RandNumber,1<br />		";<br />	}<br />		$sth = $dbh -> do_query($query);<br />		list ($Title,$Banner)= $dbh -> fetch_array($sth);<br />		$dbh -> finish_sth($sth);<br /><br />    $html = new html;<br />    list($tbopen,$tbclose) = $this -> table_wrapper();<br /><br />// If we found the banner, we'll send the output<br />// otherwise there just won't be a box.<br />if ($Banner) {<br />echo "<br /><b><font color=\"blue\"><u>Did You Know...</u> - <i>$Banner</i></b></font><br />";<br />}<br />?><br /></tr><br /></table><br />


Thanks for the great Mod Josh.

Sponsored Links
Entire Thread
Subject Posted By Posted
Beta-[6.2-6.3] Banner Ad Rotator 1.0 JoshPet 04/28/2003 10:40 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 LS1TECH 07/16/2003 1:45 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 Ian_W 07/16/2003 10:04 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 filamballa 09/04/2003 8:19 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 JoshPet 09/05/2003 12:07 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 msula 09/05/2003 12:37 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 JoshPet 09/05/2003 12:39 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 msula 09/05/2003 2:02 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 filamballa 09/05/2003 2:08 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 JoshPet 09/05/2003 2:39 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 filamballa 09/05/2003 3:43 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 monkeyra 10/28/2003 5:07 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 omegatron 10/28/2003 5:32 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 monkeyra 10/28/2003 7:53 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 monkeyra 10/28/2003 8:00 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 omegatron 10/28/2003 10:11 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 monkeyra 10/28/2003 11:11 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 omegatron 10/29/2003 12:21 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 monkeyra 10/29/2003 1:32 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 omegatron 10/29/2003 1:43 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 TheInsider 11/02/2003 7:20 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 JoshPet 11/02/2003 8:09 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 TheInsider 11/02/2003 8:20 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 JoshPet 11/02/2003 8:28 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 TheInsider 11/02/2003 8:34 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 TheInsider 11/02/2003 7:47 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 Gregori 01/30/2004 12:50 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 JoshPet 01/30/2004 1:48 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 monkeyra 05/20/2004 4:24 PM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 Earpman 03/16/2005 2:22 AM
Re: Beta-[6.2-6.3] Banner Ad Rotator 1.0 J.C. 07/11/2005 11:04 PM

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Shock Hosting
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Gizmo
Gizmo
Portland, OR, USA
Posts: 5,834
Joined: January 2000
Forum Statistics
Forums63
Topics37,583
Posts293,955
Members13,824
Most Online151,614
Nov 14th, 2025
Today's Statistics
Currently Online 408
Topics Created 0
Posts Made 0
Users Online 0
Birthdays 10
Top Posters
AllenAyres 21,080
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,834
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2026 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.1.0
(Snapshot build 20260108)