-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.php
More file actions
33 lines (27 loc) · 710 Bytes
/
view.php
File metadata and controls
33 lines (27 loc) · 710 Bytes
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
function view_from_db(){
//Database Settings
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "smart_methods";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
echo "Connection Failed";
} else { //Connected successfully
$sql = "SELECT value, name FROM motor";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "Name: " . $row["name"]. " - Value:" . $row["value"]. "<br>";
}
} else {
echo "No results";
}
$conn->close();
}
}
view_from_db();
?>