The problem that I've been having is that I can't decode the cookies after their set. If i create a file and use only the following code...
setcookie ("TestCookie1", "username", time()+3600);
setcookie ("TestCookie2", "password", time()+3600);
echo $TestCookie1;
echo $TestCookie2;
...nothing will get printed to the screen. I have tried everything, but it doesn't seem to work.
BTW, cookies are enabled in my browser.