View file script/admin/logout.php

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