13 lines
205 B
PHP
13 lines
205 B
PHP
<?php
|
|
|
|
require_once(__DIR__ . "/hangman_lib.php");
|
|
|
|
session_name(get_current_user() . "hangman");
|
|
session_start();
|
|
|
|
initGame();
|
|
echo "INIT";
|
|
//header("Location: hangman.php");
|
|
|
|
?>
|