admin 发表于 2008-1-3 02:43:45

Simple Banner Rotator 广告轮显

$links = array(
"http://www.google.com",
"http://www.msn.com",
"http://forums.digitalpoint.com"
);
//add a new link for the banner to a new line in the same format as above

$images = array(
"http://www.google.co.uk/intl/en_uk/images/logo.gif",
"http://stc.msn.com/br/hp/en-us/css/35/decoration/msn_b.gif",
"http://forums.digitalpoint.com/images/misc/dps_logo.gif"
);
//add a new image link for the banner to a new line in the same format as above


<?php
session_start();

$links = array(
"http://www.google.com",
"http://www.msn.com",
"http://forums.digitalpoint.com"
);
//add a new link for the banner to a new line in the same format as above

$images = array(
"http://www.google.co.uk/intl/en_uk/images/logo.gif",
"http://stc.msn.com/br/hp/en-us/css/35/decoration/msn_b.gif",
"http://forums.digitalpoint.com/images/misc/dps_logo.gif"
);
//add a new image link for the banner to a new line in the same format as above
//——– DO NOT EDIT BELOW THIS LINE———-
$count = count($links) -1;

$randnum = mt_rand(0,$count);

if      ($randnum == $_SESSION[‘randnum’])
      {
      $randnum = mt_rand(0,$count);
      }
$_SESSION[‘randnum’] = $randnum;
echo ‘<a href="’.$links[$randnum].‘"><img style=" border:none" src="’.$images[$randnum].‘" /></a>

‘;

?>

onions 发表于 2008-2-22 20:59:21

谢谢大大的分享了哈。。这个是个好东西哈

onions 发表于 2008-2-22 21:01:03

谢谢大大的分享了哈。。这个是个好东西哈
页: [1]
查看完整版本: Simple Banner Rotator 广告轮显