How can I remove the cookies in the local intranet browser?
Plz give me details answer.
thank you.
Question.
Started by shovon, Dec 26 2007 09:43 AM
5 replies to this topic
#1
Posted 26 December 2007 - 09:43 AM
|
|
|
#2
Posted 27 December 2007 - 12:06 AM
We don't know what browser you're using, so we can't really help you. The way of removing cookies are usually different from browser to browser.
#3
Posted 27 December 2007 - 03:18 AM
Please Help me to remove default cookies from the local intranet?
Here I am using internet explorer 6.0 and for MySql database .
Give me details answer?
thank you.
Here I am using internet explorer 6.0 and for MySql database .
Give me details answer?
thank you.
#4
Posted 27 December 2007 - 03:27 AM
Now I noticed this is in the PHP-forum. Are you looking for a way to remove cookies through PHP? In that case, you can not. You need to put a new experiyng-value on the cookie, like you could make it expire soon, which will be the same as deleting it.
#5
Posted 08 January 2008 - 05:47 AM
To delete a cookie, simply put these two lines in your script:
[HIGHLIGHT="PHP"]
setcookie('CookieName');
unset($_COOKIE['CookieName']);
[/HIGHLIGHT]
[HIGHLIGHT="PHP"]
setcookie('CookieName');
unset($_COOKIE['CookieName']);
[/HIGHLIGHT]
#6
Guest_Jaan_*
Posted 10 January 2008 - 10:06 PM
Guest_Jaan_*
well.. you can do like this also:
setcookie("cookieName", "cookieValue", time()+3600);
setcookie("cookieName", "", time()-3600);
time()+3600;means that cookie is set for 10min :)


Sign In
Create Account

Back to top









