1
0
This repository has been archived on 2025-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Random-Picture/admin/logout.php

7 lines
125 B
PHP
Raw Normal View History

2025-04-14 16:50:30 +08:00
<?php
require_once __DIR__.'/../includes/auth.php';
session_unset();
session_destroy();
header("Location: login.php");
exit;