I'm trying to propagate a cookie for a different domain.
Let's say that my script that's setting the cookie is at the following address:
http://www.domain.com/cookie.php
and I'm setting the cookie for www.example.com
Whatever I try, there's no way to see it from the example.com domain.
I'm using
setcookie("mycookie", "bla", 0, "/", "www.example.com");
What's wrong with it? Is there any limitation to cookies from different domains?