cookies php syntax
setcookie("cookie_name", "type_on_cookie", expiry_time(), "/");
cookies php syntax
setcookie("cookie_name", "type_on_cookie", expiry_time(), "/");
set and get cookie in javascript
For storing array inside cookie :
-----------------------------------
setter : var json_str = JSON.stringify(arr); cookie.set('mycookie', json_str);
getter : cookie.get('mycookie'); var arr = JSON.parse(json_str);
----------------------------------------------------------------------------
Function common for all type of variable :
==========================================
let cookie = {
set: function(name, value) {
document.cookie = name+"="+value;
},
get: function(name) {
let nameEQ = name + "=";
let ca = document.cookie.split(';');
for( let i = 0; i < ca.length; i++ ) {
let c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us