This is the command with which I set cookies:
setcookie('username', $username, strtotime('+1 months'), '/', '.localdomain.com/jp/');
This is the statement with which cookie is read:
$user=$_COOKIE['username'];
Why can I not read cookies on another page?