i have written following code for setting & retrieving cookies:-
but while printing it gives only one that is "Array ( [PHPSESSID] => 3p4l3oq93b5tet0 r7lea77tca0 ) "
i have checked in my browser 2 cookies are been created PHPSESSID & TRADE_LANGUAGE but while printing only one gets printed,
can someone pls tell what can be issue?
Thanks,
nishika
Code:
$lang = 'french';
setcookie('TRADE_LANGUAGE', $lang, time()+3600);
print_r($_COOKIE);
i have checked in my browser 2 cookies are been created PHPSESSID & TRADE_LANGUAGE but while printing only one gets printed,
can someone pls tell what can be issue?
Thanks,
nishika
Comment