Backend/20240926/index.php

24 lines
390 B
PHP
Raw Normal View History

2024-09-26 09:50:18 +00:00
<?php
include "header.php";
?>
<body>
<h1>
Játék
</h1>
<form method="POST">
<?php
2024-09-29 06:53:01 +00:00
if (isset($_SESSION["valid_input"])){
2024-09-26 09:50:18 +00:00
require "masodiklap.php";
} else{
require "elsolap.php";
} ?>
</form>
<?php
2024-09-29 06:53:01 +00:00
/*
if (isset($_SESSION["valid_input"])){
2024-09-26 09:50:18 +00:00
include "char_check.php";
}
2024-09-29 06:53:01 +00:00
*/
2024-09-26 09:50:18 +00:00
?>
</body>
</html>