Hi,
I'm setting a cookie on an anchor click on my page:
$("#btn_twitter_signin").click(function() {
$.cookie("bookmarklet_twitter_signin", "true");
});
and on the server side i'm trying to retrieve it
$_COOKIE['bookmarklet_twitter_signin']
but strangely i'm getting an "Undefined index: bookmarklet_twitter_signin", though i made sure the cookie is saved correctly by checking from Firefox View Page Info, am i missing something?
Thanks.
Yehia A.Salam