Hello,
I am looking to add a PHP-based banner-exchange and rotation script to my website.
The basic features I am looking for are:
- support of multiple formats (gif, jpg, swf etc)
- ability to set expiration in days for a certain banner
- ability to set expiration in banner views for a certain banner
and ideally (but not mandatorily)
- ability to set up a banner exchange with another site where my site displays the banner only as many times as the other site displays my banner

I've been looking around but haven't found much.
Can anyone recommend a nice, easy, clean, well-supported script to do this stuff?
Thanks a lot

    I seriously doubt you'll find a pre-written script that specific, so you can do it yourself,
    - put your banners in a database or xml with the img url, exp. date, title, etc.
    - google 'rotating image' or 'rotating banner' to find a javascript script that will rotate the images (php is server-side, you'll need javascript (client-side) to do it for you)
    - write some php to read the db or xml file, only selecting non-expired banners and whatever other arguments you need
    - if you want that banner exchange with another site, it's easier to use a database and just apply a bunch of different clauses dependent on how many views the corresponding banners received etc,

      actually I used to use a script that specific but it was CGI and I would love to find something PHP

        Since CGI is a protocol (which PHP can do though it's not ideal) and not a language, I'm going to take a punt and assume you mean Perl; in which case it should be feasible to port unless it's been written by some Perl guru who thinks TIMTOWTDI is a call to do it in as obfuscated manner as possible.

          Write a Reply...