/    Sign up×
Community /Pin to ProfileBookmark

banner advertising management

Need help! I’m trying to find a good (under $100) ad management program for a fast-growing site hosted on Verio (UNIX server). Need something that will randomly rotate the ads, provide data to me and advertisers, give me lots of control, and is easy to set up and run. What do you recommend?

reader77writer

to post a comment
Full-stack Developer

1 Comments(s)

Copy linkTweet thisAlerts:
@gumbystationFeb 20.2005 — Put this in the header.

[CODE]<script language="JavaScript">
<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'images/image1.jpg'
theImages[1] = 'images/image2.jpg'
theImages[2] = 'images/image3.jpg'
theImages[3] = 'images/image4.jpg'
theImages[4] = 'images/image5.jpg'
theImages[5] = 'images/image6.jpg'
theImages[6] = 'images/image7.jpg'
theImages[7] = 'images/image8.jpg'
theImages[8] = 'images/image9.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->
</script>
</HEAD>[/CODE]



And this into your body:
[CODE]<script language="JavaScript"><!--showImage();//--></script>[/CODE]
×

Success!

Help @reader77writer spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.19,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...