diff --git a/public/game.php b/public/game.php
new file mode 100644
index 0000000..bb169ff
--- /dev/null
+++ b/public/game.php
+<?php
+// Aloita sessio, johon tallennetaan olennaisia peli tietoja
+if (session_status() === PHP_SESSION_NONE) {
+ session_start();
+}
+
+if (!$_SESSION["game") { // Jos ei peliƤ
+
+}
+else if (isset($_POST["opettaja"]) { // Jos peli aloitetaan
+ // Aseta olennaiset peli tiedot
+ $_SESSION["game"] = true;
+ $_SESSION["teacher"] = $_POST["opettaja"];
+ $_SESSION["subject"] = $_POST["aihealue"];
+}
+
+if ($_SESSION["game"]) { // Jos peli menossa
+ // Valitse opettaja
+ include "../src/database.php";
+ $sql = "SELECT * FROM users WHERE name='{$_SESSION["teacher"]}'";
+ $result = $conn->query($sql);
+ if ($result->num_rows == 0) {
+ // TODO: Error handling
+ die();
+ }
+ $user = $result->fetch_assoc();
+ // Valitse opettajan
+}
+
+?>
+
+<html>
+ <form action="">
+ <label for="opettaja">Opettaja</label>
+ <select name="opettaja" id="opettaja">
+ <option value="Jaakko">Jaakko</option>
+ </select>
+ <label for="aihealue">Aihealue</label>
+ <select name="aihealue" id="aihealue">
+ <option value="matikka">Matikka</option>
+ </select>
+ <button type="submit">:)</button>
+ </form>
+</html>