Ok I see how I can set a cookie for another domain. Can I set it so a single cookie is visible to both?
eg instead of
setcookie("var1","value","","",".domain1.com");
setcookie("var2","value","","",".domain2.com");
Can I do
setcookie("var","value","","",".domain1.com,.domain2.com");
Is that possible?