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

7 lines
125 B
PHP
Raw Permalink 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;