Update logout.php
[clinton/MarylandElectronicPetitionSignature.git] / admin / logout.php
CommitLineData
004a78ee
PM
1<?PHP
2/* delete ALL cookies */
3foreach ( $_COOKIE as $key => $value ){
4 unset($_COOKIE[$key]);
5 setcookie($key, '', time() - 3600, '/');
6}
7header('Location: index.php');
8?>