-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhost.php
60 lines (58 loc) · 1.7 KB
/
host.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
60
<?php
require_once 'base.php';
sesion();
if(!empty($_POST['nombre'])){
if($db->campo('id', 'juegos', array('nombre' => $_POST['nombre']))){
echo 'ya existe un juego con este nombre';
}
else{
$id = $db->insert('juegos', $_POST);
$db->insert('jugadores', array(
'juego_id' => $id,
'usuario_id' => $_SESSION['usuario']['id']));
redir('jugar.php?juego='.$id);
}
}
pag_head('hostear juego');
?>
<form action="host.php" method="POST">
nombre: <input id="nombre" name="nombre" value="<?=uniqid()?>"/>
vueltas: <input id="vueltas" name="vueltas" value="1"/>
al chocar:
<select name="accion_choque">
<option value="EF">entrar por donde se salio, frenando</option>
<option value="ES">entrar por donde se salio, sin frenar</option>
<option value="VF">volver a la posicion anterior al choque, frenando</option>
<option value="VS">volver a la posicion anterior al choque, sin frenar</option>
</select>
<br/>
pista: <select id="nombre_pista" name="pista">
<option></option>
<?php
$pistas = glob('pistas/*.png');
foreach($pistas as $pista){ ?>
<option value="<?=$pista?>"><?=substr($pista,7, -4)?></option>
<?php }
?>
</select>
escala (%): <input id="escala" name="escala" value="100"/>
porte grilla: <input id="porte" name="porte" value="10"/>
cuadros de borde: <input id="borde" name="borde" value="5"/>
<button>crear</button>
</form>
<div id="contenedor">
<canvas id="pista"></canvas>
</div>
<script type="text/javascript">
$(function(){
$('#nombre_pista, #porte, #escala, #borde').change(function(){
init_pista({
pista: $('#nombre_pista').val(),
porte: $('#porte').val(),
escala: $('#escala').val(),
borde: $('#borde').val()
});
});
});
</script>
<?php pag_foot();?>