cookie problems

A

alex.kemsley

Hi all,
Am trying to write a cookie that sets and write the reffurer and
current url.
Have cobbled this together but im damed if i can get it to work
Your input would be apreciated. Its probaly a problem with the
checkcookie function
Thanks
Alex

<html>
<head>
<script type="text/javascript">
function getCookie(c_name)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=")
if (c_start!=-1)
{
c_start=c_start + c_name.length+1
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
return unescape(document.cookie.substring(c_start,c_end))
}
}
return null
}

function setCookie(c_name,value,expiredays)
{
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays)
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : "; expires="+exdate)
}

function checkCookie()
{
reff=getCookie('reff')
entryPoint=getCookie('entryPoint')
if (entryPoint!=null && reff!=null)
{document.write(reff+ ' ' +entryPoint)}
else
{
entryPoint = document.URL;
reff = document.referrer;
setCookie('entryPoint',entryPoint,1)
setCookie('reff',reff,1)
}
}
</script>
</head>
<body onLoad="checkCookie()">
</body>
</body>
</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top