Hi,
phpadsnew is a pretty fully featured banner ad management / rotator script - and its open source and free. A little bit complex though.
If you want something simpler, I've just written one for myself for
www.jobresumes.net .
It doesn't do any click tracking, as I only need it for affiliate ads that do all that for me, but it is easy to use and administer.
The basic features are:
- multiple ad categories (eg, "top banner", "side banner", etc)
- ads can have different "weightings" - ie a banner with a weighting of 2, will be displayed twice as often as one with a weighting of 1.
- ads can be any html, so its easy to just paste affiliate html from CJ or somewhere and use that
- very easy to use administration script
I'm only using to display ads on one site, and for that the code to display an ad is as simple as:
PHP:
// at the top of the script, set it all up
include("ads.php");
// connect to your database
$conn = mysql_connect();
mysql_select_db("adsdatabase");
$ads = new ad($conn);
// Then to display an ad, just...
$ads->display("category name");
Setting it up to call ads remotely would be easy, but you'd need to use iframes or layers or javascript to include the ad on the page.
Its free if you (or anyone else) wants it,
just reply here.
Alternatively, if you haven't already, try
www.hotscripts.com
Cheers, Sam