Vip-----Munde
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Vip-----Munde

Jai Mata Di
 
HomeLatest imagesRegisterLog in
Welcome Dear Users Please Make Your First Post In Introdcution Section and Enjoy the forum
Search
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
» [Vn5socks.net] Auto update 24/7 - Good socks 8h00 PM
 Banner Rotation in (php) EmptySat Dec 01, 2018 7:57 pm by vn5socks.net

» [Shopsocks5.com] Service Socks5 Cheap - 19h40
 Banner Rotation in (php) EmptySat Dec 01, 2018 7:42 pm by shopsocks5.com

» [Vn5socks.net] Auto update 24/7 - Good socks 4h25 PM
 Banner Rotation in (php) EmptySat Dec 01, 2018 4:25 pm by vn5socks.net

» [Shopsocks5.com] Service Socks5 Cheap - 16h10
 Banner Rotation in (php) EmptySat Dec 01, 2018 4:10 pm by shopsocks5.com

» [Vn5socks.net] Auto update 24/7 - Good socks 8h40 AM
 Banner Rotation in (php) EmptySat Dec 01, 2018 8:45 am by vn5socks.net

» [Shopsocks5.com] Service Socks5 Cheap - 8h25
 Banner Rotation in (php) EmptySat Dec 01, 2018 8:25 am by shopsocks5.com

» [DICHVUSOCKS.US] 12h05 AM UPDATE 24/24- Good Socks
 Banner Rotation in (php) EmptySat Dec 01, 2018 12:01 am by dichvusocks

» [DICHVUSOCKS.US] 23h15 PM UPDATE 24/24- Good Socks
 Banner Rotation in (php) EmptyFri Nov 30, 2018 11:35 pm by dichvusocks

» [Vn5socks.net] Auto update 24/7 - Good socks 11h35 PM
 Banner Rotation in (php) EmptyFri Nov 30, 2018 11:34 pm by vn5socks.net

Top posters
vn5socks.net
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
dichvusocks
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
shopsocks5.com
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
tisocks
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
____H-E-A-R-T____
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
___devils____
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
***__яiCh_M@N ™__***
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
™12.-.@.-.j.-.@™
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
__Tigeя™__
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
a-x-n
 Banner Rotation in (php) I_vote_lcap Banner Rotation in (php) I_voting_bar Banner Rotation in (php) I_vote_rcap 
Most active topics
Jokes In Hindi Funny
[Vn5socks.net] Service Seller Socks Good
Scanned Idz for Cracking
28 August 2011
Hotfile Premium Accounts
26 August 2011
30 August 2011
28 August 2011
29 August 2011
Show Your Cracking Hits
Most Viewed Topics
26 april 2012
23 Aug VIP Http
28 april 2012
[Shopsocks5.com] Service Socks5 Cheap - 19h50
14 april 2012
PROXIES SOCKS PROXY LIST 20h31 PM BY TISOCKS.NET
PROXIES SOCKS PROXY LIST 20h31 PM BY TISOCKS.NET
PROXIES SOCKS PROXY LIST 20h25 PM BY TISOCKS.NET
07 nov.2011
28 August 2011
Top posting users this month
No user

 

  Banner Rotation in (php)

Go down 
AuthorMessage
__Dj_-k1ll3r__
Super Moderator
Super Moderator
__Dj_-k1ll3r__


Posts : 63
Points : 187
Reputation : 0
Join date : 2011-07-18

 Banner Rotation in (php) Empty
PostSubject: Banner Rotation in (php)    Banner Rotation in (php) EmptyMon Jul 18, 2011 2:28 pm

Display random banners on your site is to use the rand () function and assign each image and link a number. The banner that corresponds to the random number generated is then displayed.

PHP Code:




Code:
<?php
session_start();

$links = array(
"http://www.google.com",
"http://www.msn.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",

);//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>’;

?>

OR

PHP Code:


Code:
$Img1 = "http://yoursite.com/image.jpg";
 $Url1 = "http://www.identity.st"; $Img2 = "http://www.hissite.com/bannerA.gif";
 $Url2 = "http://www.about.com";
 $Img3 = "http://hersite.com/MyImage.gif";
 $Url3 = "http://php.about.com";
   
 $num = rand (1,3);
 $Image = ${'Img'.$num};
 $URL = ${'Url'.$num};  Print "<a href=".$URL."><img src=".$Image." border=0></a>"; 

place the PHP include on your page where you want the banner rotator.

PHP Code:


Code:
<?php include ("banner-rotator.php"); ?>

 Banner Rotation in (php) 10f7emwxdtx8gv9comi

 Banner Rotation in (php) S26HN

 Banner Rotation in (php) 7ybWD

 Banner Rotation in (php) FUByn
Back to top Go down
 
Banner Rotation in (php)
Back to top 
Page 1 of 1
 Similar topics
-
» Crazy Singing Bird - Star Spangled Banner, USA National Anthem

Permissions in this forum:You cannot reply to topics in this forum
Vip-----Munde :: PC Related :: Hackers' Lounge-
Jump to: