hi there
ya u can write cookie in PHP.
u can create a cookie by this command.
setcookie('name','value','expiry');
in which
name-name of the cookie
value-value of the cookie
expiry-when u want the cookie to be expired
and u can get the value of a cookie by this command:
getcookie('name');
and if u want 2 read cookie from one server 2 another then send cookie as a GET variable
from one server 2 another.