Add some code

This commit is contained in:
2019-06-30 20:12:39 +02:00
parent d71bf05062
commit f6622b65c3
13 changed files with 2566 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<?php
require_once(__DIR__ . "/hangman_lib.php");
session_name(get_current_user() . "hangman");
session_start();
$letter = $_POST['letter'];
guessLetter($letter);
header("Location: hangman.php");
?>