-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensor-data.php
34 lines (27 loc) · 1.15 KB
/
sensor-data.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
<?php
include "config/config.php";
$api_key_value = "tPmAT5Ab3j7F9";
$api_key= $id = $latitude = $longitude = $dat = $tim = "";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$api_key = test_input($_POST["api_key"]);
if($api_key == $api_key_value) {
$id = test_input($_POST["id"]);
$latitude = test_input($_POST["latitude"]);
$longitude = test_input($_POST["longitude"]);
$dat = test_input($_POST["date"]);
$tim = test_input($_POST["time"]);
$sql ="UPDATE `tbl_location` SET `id`='" . $id . "',`latitude`='" . $latitude . "',`longitude`='" . $longitude . "',`date`= '" . $dat . "',`time`='" . $tim . "' WHERE id='" . $id . "'";
// $sql = "INSERT INTO tbl_location (id, latitude, longitude, date, time)
//VALUES ('" . $id . "', '" . $latitude . "', '" . $longitude . "', '" . $dat . "', '" . $tim . "')";
if ($conn->query($sql) === TRUE) {
echo "New record created successfully";
}
$conn->close();
}
}
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}