1
嗨我有一個設置cookie的問題。我有這樣Setcookie對於不同的URL有所不同
http://www.myweb.com/series/Setayesh/Part-1在此URL我檢查如果cookie是由該
if(isset($_COOKIE['cookiename']))
{
//Perform some operations
}
else
{
setcookie('cookiename',$value,time()+36000)
}
它運作良好,對所有URL像
http://www.myweb.com/series/Setayesh/Part-1 http://www.myweb.com/series/Setayesh/Part-1 http://www.myweb.com/series/Setayesh/Part-1 and so on
但設置或不是URL時,網址將成爲
http://www.myweb.com/series/Pezeshkan/Part-1的如果條件不執行,它總是在相同的瀏覽器中進入其他條件。這是什麼問題?當我設置cookie時,我沒有設置任何url,那麼爲什麼它在這種情況下表現不同。
Cookie的值是否爲'NULL'? – alex 2011-03-14 08:27:05
沒有當我的網址更改提到的問題,它是空的,否則不是 – 2011-03-14 08:31:26