I am having a problem setting a cookie through PHP on IE. It works for any other browser but for IE. I have noticed that if i make the call for setting a cookie on IE and then making a request for it (same or next page) it doesn't work but if i land on the page and then refresh it, the cookie is set.
The way i am doing it is:
setcookie('ckone', $ck_one,$session_expiration_time,'/');
Any thoughts?