savvyeditor
08-05-2006, 08:19 AM
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.
mic2100
08-05-2006, 09:19 AM
i would say a joint effert between a server side language and javascript to make the window popup.
<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.