1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00
polr/logout.php

5 lines
92 B
PHP

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