ASP.Net has the concept of using 'subkeys' in cookies. i.e. You can write a cookie with
Response.Cookies("userInfo")("userName") = "patrick"
Response.Cookies("userInfo")("lastVisit") = "today"
This would create a cookie which looks like
Name: userInfo
Value: userName=patrick:lastVisit=today
Is there a native method in PHP to read/write cookies like the above one?
I need to read/write a cookie in PHP which can be read by ASP.Net with subkeys