When I print_r($_COOKIE);, I get following result.
Array ( [filters] => Array ( [input1] => 1 [input2] => 20000 [input3] => none ) [PHPSESSID] => 12334 )
I want to delete some element and want it to be like this:
Array ( [filters] => Array ( [input3] => none ) [PHPSESSID] => 12334 )
I tried this but it not effecting anything in $_COOKIE
$past = time() - 3600;
setcookie( "filters[input1]", "", $past, '/' );
setcookie( "filters[input2]", "", $past, '/' );
What is wrong here? All day is waisted trying this?
Thanks
try: