1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-05 03:24:41 +00:00

Add files via upload

This commit is contained in:
だいちまる
2023-08-21 13:57:56 +09:00
committed by GitHub
parent 965d7b903c
commit 76cf76475c
21 changed files with 453 additions and 181 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
if( !empty($_POST['logout']) ) {
// リダイレクト先のURLへ転送する
$url = '../logout/index.php';
header('Location: ' . $url, true, 303);
// すべての出力を終了
exit;
}
?>