Game-Jaming/Backend/Controllers/Group/Logout.php

7 lines
74 B
PHP
Raw Normal View History

2021-03-04 13:13:03 +00:00
<?php
session_start();
2021-03-22 08:43:33 +00:00
session_destroy();
echo http_response_code(200);