I did that, and it was no different, then I removed the "" from the name..all fine!!
However....the other pages on the site will not work with it: I am using isset (it works with !isset) but I cannot get an if/else to work:
<?php
if (isset(cookievalue)) {
echo "cookie set";
include 'lala.html';
}
else
{
s echo "To access the download area of the site, we require you to register. Please make sure you have cookies enabled so as not to sign-in every time<br />";
include 'join_form.html';
} ?>