-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjuego.php
59 lines (53 loc) · 1.76 KB
/
juego.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
spl_autoload_register(function ($nombre){
require "includes/clases/{$nombre}.php";
});
session_start();
if (!isset($_SESSION['tabla'])) {
header("Location: ./index.php?var=e");
}
// require "./includes/classes/Tabla.php";
$tabla = $_SESSION['tabla'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Opera-Minas | Juego</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php if (!empty($_SESSION['pregunta'])) { ?>
<div class="contenedorPregunta">
<form action="includes/juego.inc.php" method="post">
<h1><?=$_SESSION['pregunta']->pregunta?></h1>
<input type="text" name="respuesta" placeholder="Tu respuesta:">
<button type="submit" class="link" name="celda" value="<?=$_SESSION['celda']?>">Responder</button>
</form>
</div>
<?php } ?>
<div class="contenedor">
<div class="header">
<div><h1 class="resaltado"> <span>O</span>pera-<span>M</span>inas</h1></div>
</div>
<form action="includes/juego.inc.php" method="post">
<table>
<?php
$tabla->mostrarTablero();
?>
</table>
<input type="checkbox" name="marcar" value="true" id="marcar">
<label for="marcar">
<img src="imgs/flag.png">
</label>
</form>
</div>
<div>
Icons made by <a href="https://www.flaticon.com/authors/smashicons" title="Smashicons">Smashicons</a><br>
from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a><br>
is licensed by <a href="http://creativecommons.org/licenses/by/3.0/ "title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a>
</div>
</body>
</html>