What is the difference between key and value in html cookies?
i saw that a cookie looks like this in html request:
not like this:
Cookie: name1=key1; name2=key2;
but rather like this:
Cookie: key1=value1; key2=value2;
and if a want to make a unique personal id for each cookie, say "UUID",
should i write key="UUID"? or value="UUID"?
im sorry for the "silly" question but im really confused here...
thank you!