]> dev.renevier.net Git - syp.git/blob - logout.php
add some margin around image
[syp.git] / logout.php
1 <?php
2 /* Copyright (c) 2009 Arnaud Renevier, Inc, published under the modified BSD
3    license. */
4
5 require_once ("./inc/settings.php");
6
7 $cookie_name = sprintf ("%sauth", DBPREFIX);
8 setcookie ($cookie_name, "", time () - 3600, "" , "",false, true);
9 header ('Location: index.php');
10
11 ?>