the problem is when i set my cookies on the localhost it works very nice along all pages , but when a put it in my domain i get nothing it look like the cookie is not set to be working
i check the cookie through this script in the domain :
<?php
setcookie("mina", "Alex Porter", time()+3600, "/" , ".petromariness.com" );
if (!$COOKIE['mina']) {
echo "there is no such a cookie";
}else {
echo "there is a cookie ";
}
echo $COOKIE[mina];
?>
i get : there is no such a cookie
so could any body help me to set my cookie
thnx ....