Wednesday, 5 December 2007

People want to advertise

Question:
If I have a website, and people want to advertise on it, is it difficult ? Do I need special software ?

Answer:Simple Ads:
- setting banner ads as other images on your site. Add URL from ads to banner.

Rotate Banner
- use banner rotate script

Advance Banner Ads
- use banner rotate s/w for manage many ads banner

For sample about rotate banner, visit http://vvipvideo.com , refresh for some times and watch banners.

More Answer:

Banner Rotate script with PHP

$a=rand(1,3);
switch($a){

case"1":
$url="URL BANNER1";
break;
case"2":
$url="URL BANNER2";
break;
case"3":
$url="URL BANNER3";
break;
}

echo"$url";

?>

For X banners, you can change '3' at $a=rand(1,3); to $a=rand(1,X);

No comments: