Cookies run on the client, and you can use JS to set cookies.
First of all, you need to understand the structure of cookies a little bit. Simply put: cookies are based on key values. It is saved in the form of key=value. Each cookie is usually separated by ";".
JS setting cookie:
Assume that in page A, you want to save the value of the variable username ("jack") to the cookie, and the key value is name, then the corresponding JS code is:
document.cookie="name="+username;
Read cookie
function getCookie(name){ var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)"); if(arr=document.cookie.match(reg)) return unescape(arr[2]); else return null; }
The above is the detailed content of How to set cookies and delete cookies. For more information, please follow other related articles on the PHP Chinese website!