I have written these(shown below) few line to set cookies.
$time = mktime()+10800;
$date = date("l, d-M-y H:i:s", ($time));
header("Set-Cookie: CKEMail=$EMail; path =/; expires=$date GMT");
header("Set-Cookie: CKPassword=$Password; path=/; expires=$date GMT");
header("Set-Cookie: CKHash=$Hash; path=/; expires=$date GMT");
header("Set-Cookie: CKUserId=$UserId; path=/; expires=$date GMT");
header($header);
when I am trying to read cookie information in other page, it does not show any thing.
PLEASE HELP