[advanced search]
Results from the most recent live auction are here.
17 members in the live chat room. Join Chat!
Register Rules & FAQ NP$ Store Active Threads Mark Forums Read
Go Back   NamePros.Com > Design and Development > Programming > CODE
User Name
Password

Old 04-05-2006, 01:50 AM   · #1
Xyzer
Steven
 
Xyzer's Avatar
 
Name: Steven Gibbons
Location: United Kindom
Trader Rating: (45)
Join Date: Aug 2005
Posts: 1,506
NP$: 40.00 (Donate)
Xyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to all
Tsunami Relief AIDS/HIV
Random add Script

Hi,

If you want a copy its nice and easy in php, just put where you want the ads to appear:
Code:
<?php srand( microtime() * 1000000); $advertise = rand(1,3); //After the rand decided how many youve got and the first and last number e.g got 3, 1,3 switch($advertise) //you can add more just use the same format { case 1 : $banner="site 1 image url"; $url="site one address"; break; case 2 : $banner="site 2 image url"; $url="site two address"; break; case 3 : $banner="site 3 image url"; $url="site 3 address"; break; } $display = "<a href=\"$url\" target=\"_blank\"> "; $display.= "<img src=\"$banner\" "; $display.= "width=\"468\" height=\"60\" border=\"0\" >"; $display.="</a>"; echo($display); ?>


Thanks and enjoy.

p.s (I Like rep )


Please register or log-in into NamePros to hide ads
Xyzer is offline   Reply With Quote
Old 04-05-2006, 05:49 PM   · #2
cvxdes
DNOA Member
 
cvxdes's Avatar
 


Location: Milford MA
Trader Rating: (104)
Join Date: Oct 2005
Posts: 682
NP$: 94.45 (Donate)
cvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud ofcvxdes has much to be proud of
And if you want FlatDB, I just wrote this.

In your DB file, put:
Code:
http://www.hi.com||http://www.hi.com/hi.png http://www.hi2.com||http://www.hi2.com/hi.png


The php:
PHP Code:
<?
funtion ad_template
($url, $img){
    
$ad = "<a href='".$url."'><img src='".$img."' alt=''/>";
    return
$ad;
}
$i = 0;
$lines = file('addb.txt');
foreach(
$lines as $line){
    
$i++;
    
$data = explode("||", $line);
    
$return[$i] = ad_template($data[0], $data[1]);
}
$number = rand(0,$i);
echo
$return[$number];
?>
cvxdes is online now   Reply With Quote
Old 04-15-2006, 01:31 PM   · #3
Borghunter
Resistance is Futile
 
Borghunter's Avatar
 
Name: Mitchell
Location: Calgary, Canada
Trader Rating: (24)
Join Date: Apr 2006
Posts: 1,063
NP$: 156.05 (Donate)
Borghunter is a name known to allBorghunter is a name known to allBorghunter is a name known to allBorghunter is a name known to allBorghunter is a name known to allBorghunter is a name known to all
Wildlife
Thumbs up

That's a pretty useful script, I'll use it everywhere!

Added Random Ad Sizes.
PHP Code:
<?php
srand
( microtime() * 1000000);
$advertise = rand(1,3);
//After the rand decided how many youve got and the first and last number e.g got 3, 1,3
switch($advertise)
//you can add more just use the same format
{
case
1 : $banner="site 1 image url"; $url="site one address"; $imgwidth="88"; $imgheight="31"; break;
case
2 : $banner="site 2 image url"; $url="site two address"; $imgwidth="50"; $imgheight="50"; break;
case
3 : $banner="site 3 image url"; $url="site 3 address"; $imgwidth="468"; $imgheight="60"; break;
}
$display = "<a href=\"$url\" target=\"_blank\"> ";
$display.= "<img src=\"$banner\"  ";
$display.= "width=\"$imgwidth\" height=\"$imgheight\" border=\"0\" >";
$display.="</a>";
echo(
$display);
?>
__________________
Politics On Fire - Political Debate and Discussions Forum

Last edited by Borghunter : 04-15-2006 at 01:47 PM.
Borghunter is offline  
  Reply With Quote
Old 04-15-2006, 10:46 PM   · #4
Xyzer
Steven
 
Xyzer's Avatar
 
Name: Steven Gibbons
Location: United Kindom
Trader Rating: (45)
Join Date: Aug 2005
Posts: 1,506
NP$: 40.00 (Donate)
Xyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to all
Tsunami Relief AIDS/HIV
I could have added the sizes, ill do that on the next version that comes, out, cvxdes, i dont see what you are trying to do, break into my thread, mine is just a flat db, no mysql or anything involved.
Xyzer is offline   Reply With Quote
Old 04-15-2006, 10:55 PM   · #5
weblord
www.1weblord.com
 
weblord's Avatar
 
Name: William R. Nabaza - williamrnabaza.com
Location: Philippines - www.Nabaza.com
Trader Rating: (210)
Join Date: Dec 2005
Posts: 16,738
NP$: 18587.23 (Donate)
weblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatnessweblord Has achieved greatness
Autism Protect Our Planet
nice script, rep is coming your way.
weblord is offline  
  Reply With Quote
Old 04-15-2006, 11:11 PM   · #6
Xyzer
Steven
 
Xyzer's Avatar
 
Name: Steven Gibbons
Location: United Kindom
Trader Rating: (45)
Join Date: Aug 2005
Posts: 1,506
NP$: 40.00 (Donate)
Xyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to allXyzer is a name known to all
Tsunami Relief AIDS/HIV
Oh, thanks! Its a script i needed to do something then when i learnt php, everyone is liking it.
Xyzer is offline   Reply With Quote
Old 06-21-2006, 01:18 PM   · #7
Phoenix
NP Maniac™
 
Phoenix's Avatar
 
Name: Tom
Trader Rating: (29)
Join Date: Apr 2004
Posts: 627
NP$: 21.75 (Donate)
Phoenix is a glorious beacon of lightPhoenix is a glorious beacon of lightPhoenix is a glorious beacon of lightPhoenix is a glorious beacon of lightPhoenix is a glorious beacon of lightPhoenix is a glorious beacon of light
Very nice, was looking for something like this a while ago ..!
__________________
~ Thomas Cameron
Phoenix is offline   Reply With Quote
Old 08-24-2006, 01:20 PM   · #8
kleszcz
 
kleszcz's Avatar
 
Trader Rating: (232)
Join Date: Jul 2006
Posts: 3,290
NP$: 252.35 (Donate)
kleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond reputekleszcz has a reputation beyond repute
Marrow Donor Program Multiple Sclerosis
Simply basic but applicable to any object with modifications. Thanks.
__________________
BQB.com auction: CQAW.com, UJMH.com
LLLL.coms: ALL 2 Premium Letters + U + K
kleszcz is offline   Reply With Quote
Closed Thread

NamePros is a revenue sharing forum.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


Site Sponsors
Buy Flash Arcade Game Script Proof is in the Parking http://www.dnfinder.com
Advertise your business at NamePros
All times are GMT -7. The time now is 01:21 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0