Look i don't know about the faking cookie but generally (forgive me for my spelling mistakes) you should put a user name and a password or an encryped number on the cookie so you could confirm the user as your friend for example...
Small Example:
SEND:
$user="Your_wanted_user_name";
$pass="Your_wanted_password";
setcookie("cookie_name",$user."/".$pass,time()+360);
GET&CHECK:
list($usercheck,$passcheck)=split("/",$cookie_name);
if (($usercheck==$user)&&($passcheck==$pass))
{
echo "hello my friend";
}
else
{
echo "you are not welcome here!";
}
I that answer your question if not leave me here another message and i'll try to help...
-Oren-