-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.php
45 lines (42 loc) · 977 Bytes
/
controller.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
<?php
require_once "mqtt.php";
if(isset($_GET['id'])) {
if($_POST['knop']=="up") {
sendmessage("vloer/controller/" . $_GET['id'], "up");
}
if($_POST['knop']=="left") {
sendmessage("vloer/controller/" . $_GET['id'], "left");
}
if($_POST['knop']=="right") {
sendmessage("vloer/controller/" . $_GET['id'], "right");
}
if($_POST['knop']=="down") {
sendmessage("vloer/controller/" . $_GET['id'], "down");
}
}
else{
die("need id");
}
?>
<iframe name="votar" style="display:none;"></iframe>
<form method="post" target="votar">
<table >
<tbody>
<tr>
<td> </td>
<td><button name="knop" value="up"> up </button></td>
<td> </td>
</tr>
<tr>
<td><button name="knop" value="left">left</button></td>
<td> </td>
<td><button name="knop" value="right">right</button></td>
</tr>
<tr>
<td> </td>
<td><button name="knop" value="down">down</button></td>
<td> </td>
</tr>
</tbody>
</table>
</form>