$username = $_COOKIE['ID_my_site'];
$pass = $_COOKIE['Key_my_site'];
$firstName = $_COOKIE['firstName'];
$lastName = $_COOKIE['lastName'];
$active = $_COOKIE['active'];
$email = $_COOKIE['emailAddress'];
then when using
echo "<b>Username:</b> <? " . $username . "?>";
echo "<a href=logout.php>Logout</a>";
it doesn't print out the username.