also it would be helpful for some advice or suggestions for improving the website, there will be more pages to come (there is only two yet i think)
and here is the code for my cookies:
PHP Code:
function createCookie(name, value) {
name=escape(name);
value=escape(value);
if(document.cookie != document.cookie)
{index = document.cookie.indexOf(name);}
else
{ index = -1;}
if (index == -1)
{
document.cookie=name+"="+value+"; expires=Sunday, 16-Feb-3586 05:39:59 GMT"
}
}
function getCookie(name) {
name=escape(name)
if(document.cookie)
{
index = document.cookie.indexOf("; "+name+"=");
if (index<0 && document.cookie.indexOf(name+"=")==0) index=-2;
else if (index<0) return false;
index+=2;
if (index != -1)
{
namestart = (document.cookie.indexOf("=", index) + 1);
nameend = document.cookie.indexOf(";", index);
if (nameend == -1) {nameend = document.cookie.length;}
return unescape(document.cookie.substring(namestart, nameend));
}
}
}
Bookmarks