-
Notifications
You must be signed in to change notification settings - Fork 0
/
conexao.php
33 lines (28 loc) · 943 Bytes
/
conexao.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
<?php
$conn= new mysqli("localhost" , "root", "","arduino");
if($conn-> connect_errno){
echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
exit();
}
$temperatura = $_GET['temperatura'];
$pressao = $_GET['pressao'];
$umidade = $_GET['umidade'];
$velocidade = $_GET['velocidade'];
$direcao = $_GET['direcao'];
if($temperatura == null || $umidade == null|| $pressao == null|| $direcao == null){
echo "valor nullo";
}
else{
$sql = "INSERT INTO estacao (temperatura,pressao,umidade,velocidade,direcao)
VALUES ('$temperatura', '$pressao', '$umidade', '$velocidade','$direcao')";
if ($conn->query($sql) === TRUE) {
session_start();
$last_id = $conn->insert_id;
$_SESSION['id'] = $last_id;
echo "New record created successfully" .$_SESSION['id'] ;
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
}
header("Location: arduino.php");
?>