Click here to Skip to main content
15,892,480 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
How can i update the value of a cookie for my localhost application ...

I am trying to update via an ajax request but its creating two cookies..
this is the php code iam using..
PHP
$sessionManifestName = "manifest_".md5( time() ).".xml";		
		
if( isset ( $_COOKIE["TMP_MANIFEST"] ) ){
	setcookie( "TMP_MANIFEST", "", time()-3600, "/"  ) ;
}

setcookie( "TMP_MANIFEST", $sessionManifestName, time()+3600 , "/"  ) ;


But it creates two cookies with the same in different directories with different values..

from the root... i have one cookie but they are two in the dir which contains this script.

that is..
in ./ i have one TMP_MANIFEST but
in ./myapp/controller - i have two TMP_MANIFEST cookies with different values.

How can i fix this?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900