How can I avoid set_cookie urlencoding (I believe it is urlencoding) the value when setting a cookie.
For example:
setcookie ("domain","myusername:mypassword",time()+3600,"/","domain",0);
will return the value as :
myusername%3Amypassword
rather than myusername:mypassword, which is what I want.
I am reading the cookie back from a C program, but it is set in the cookie that way also.
Please avoid any discussion about the insecurities of usernames and passwords in cookies, it's irrelavant.
Thanks,