Forum Moderators: phranque
BTW I do not want a solution that includes sending a user to different versions of the same site. Here is an example of what i CANT use:
<script language="JavaScript">
<!--
if (document.referrer.indexOf('url1.com') > -1)
location.href = 'index1.html';
else if (document.referrer.indexOf('url2.com') > -1)
location.href = 'index2.html';
else
location.href = 'index0.html';
//-->
</script>
I need a solution that allows me to change the content on the page its self.
DopeR
[edited by: DopeR at 8:54 pm (utc) on Aug. 4, 2006]