1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-11-09 11:42:28 +01:00
polr/logout.php

5 lines
92 B
PHP

<?php
session_start();
$_SESSION = array();
session_destroy();
header('Location:index.php');