Following up, I finally figured it out.
When you call setcookie($xxx, $yyy, time() + $zzz), it is only accessible by files in the current directory. I added a '/' to make:
setcookie($xxx,$yyy,time() + $zzz, "/")
Now I can access the cookie.
It only took about nine hours to figure that out. :queasy: