Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 08-05-2006, 08:19 AM   PM User | #1
savvyeditor
New to the CF scene

 
Join Date: Aug 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
savvyeditor is an unknown quantity at this point
Question Random Link Generator That Picks Links In Order

I know there are dozens of random link generators available on the web for free but I cannot find one that will pick links in order. As in, start at the top of the list and go to the bottom of the list and so on. What I need is even coverage of affiliate links for signups. Each site visitor would land on a page with a signup link that is linked to a different affiliate. Is this possible? Can JS do this or is this a server side function? Any assistance would be greatly appreciated.

Last edited by savvyeditor; 08-05-2006 at 08:33 AM..
savvyeditor is offline   Reply With Quote
Old 08-05-2006, 09:19 AM   PM User | #2
mic2100
Regular Coder

 
mic2100's Avatar
 
Join Date: Feb 2006
Location: Scunthorpe
Posts: 562
Thanks: 15
Thanked 28 Times in 27 Posts
mic2100 is on a distinguished road
i would say a joint effert between a server side language and javascript to make the window popup.

Code:
<script language="javascript">

function popupWindow(URLlink)
{

	window.open(URLlink, '', config='fullscreen=no,location=yes,resizable=yes,scrollbars=yes,menubar=yes,status=yes,titlebar=yes,toolbar=yes,width=800,height=600');

}

</script>

<body onload="popupWindow('**NEXT LINK**')">
<!-- THE NEXT LINK PART ABOVE CAN BE REPLACED BY THE NEXT LINK VARIABLE -->
Wot server side language do u use and how are you storing the links, this part will only create the popup window.
mic2100 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:10 AM.


Advertisement
Log in to turn off these ads.