hi
i have a page which contains
-
<frameset rows="16%,*" frameborder="1" framespacing="1">
-
<frame src="includes/header.php" name="top" noresize="noresize">
-
<frameset cols="200,*">
-
<frame src="menu.php" name="left" noresize="noresize">
-
<frame src="welcome.php?p=login" name="right" noresize="noresize">
-
</frameset>
-
</frameset><noframes></noframes>
-
and all functions are performed inside welcome.php through including the specific pages which are mentioned in the menu page.
and when a user login i m setting a cookie value in the welcome page.,
but it is not available in other frmeset pages lik menu.php etc..
tried using the codes to set the cookie
-
setcookie("user",$user,time()+3600,'http://localhost/transframe/');
-
-
and
-
-
setcookie("user",$user,time()+3600,'/');
-
-
and
-
-
setcookie("user",$user,time()+3600);
-
so i need to get the cookie value outside that particular also.,
regards
vijay