I have this weird Cookie problem. In Firefox with PHP Version 4.3.9 I use setcookie () to set a cookie by the name of "test1". I know the cookie is set because I look in Firefox's list of cookies and there it is. However the following code does not work which has baffled me.
if (isset ($_COOKIE['test1''])) {
echo "Cookie Set";
}
Any help or info would be appreciated. A look in the PHP manual indicates this should work!