HB/game/logout.php

9 lines
147 B
PHP

<?php
if(!defined('INDEX')) { header('Location: ../'); exit; }
$sess->values['connected'] = FALSE;
$sess->put();
header('Location: ./');
exit;
?>