-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavg1.php
65 lines (50 loc) · 1.13 KB
/
avg1.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
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="10">
</head>
<body bgcolor="lightblue">
<div align="left">
<font size="3"><a href="http://192.168.43.243/select.php">back</a>
</div>
<h1 align="center"> WEATHER </h1>
<table border="1" align="center" style="line-height:25px;">
<tr>
<th>AVG Temp</th>
</tr>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "weather";
// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
//$sql = "INSERT INTO tem VALUES ({$_GET["temp"]})";
$sql = "SELECT avg(temperature) FROM sam";
$res = $conn->query($sql);
if($res->num_rows>0){
while($row = $res->fetch_assoc()){
?>
<tr>
<td><?php echo $row['avg(temperature)']; ?></td>
</tr>
<?php
}
}
else
{
echo " no records found";
}
$connection->close();
if (mysqli_query($conn, $sql)) {
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . mysqli_error($conn);
}
?>
</body>
</html>