LaFactoriaVerde_Web/logout.php
2011-03-24 18:49:33 +00:00

17 lines
276 B
PHP

<?
include ("config.php");
//destroys the session, the variables are not longer set
session_start();
session_unset();
session_destroy();
$_SESSION = array();
?>
<html>
<meta http-equiv="refresh" content="0;url=<?php echo $base_dir; ?>/index.php">
</html>