<?php
session_start();
if(isset($_SESSION['auth'])){
unset($_SESSION['auth']);
header("location: index.php");
}else{
header("location: index.php");
}
/*
<html>
<head>
<meta http-equiv="Refresh" content="30; url=<?php echo'earn.php?do=accumulate'; ?>" />
</head>
</html> */
?>