hi,
this is a simple question i guess....
I want to delete all the cookies in my browser through a PHP script. pls help!!!!
delete my COOKIES!!
Delete ALL cookies, you cannot.
You can delete your own cookies whit this php (only the cookies saved on the domain you execute this script)
<?php
foreach($_COOKIE as $cookie=>$value) {
setcookie($cookie,NULL);
}
?>
There are a lot of programs to delete all the cookies with a simple click. Search for them in download.com or anywhere ..
If you are using MIE (Microsoft internet Explorer), simply goto Tools>Internet Options>Geberl>Temporarly Internet Files>Delete Cookies...
Does that hlep?
thankx jtacan, i'll try that site.
If anyone else has other ideas their all welcome.
I guess my idea was ignored? Oh well, just trying to help
THANKX EVERYBODY!!!