quartznet-info/admin/logout.php

6 lines
101 B
PHP
Executable file

<?php
session_start();
session_unset();
session_destroy();
header("location:../index.php");
?>