-
Notifications
You must be signed in to change notification settings - Fork 0
/
find-details.php
131 lines (97 loc) · 2.47 KB
/
find-details.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dashboard</title>
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body {
border-spacing: 10px 0;
background-color: #F1F1F1;
}
html,
body,
h1,
h2,
h3,
h4,
h5 {
font-family: "Raleway", sans-serif
}
</style>
<body>
<!-- Blog entries -->
<div class="w3-col l12 s12">
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
</br>
<div class="w3-container">
<a href="index.php">return home </a>
<br />
<br />
<h3><b>Find details</b></h3>
<p>
<form action="find-details.php" method="post">
Hostname: <input type="text" name="ID"><br><br>
<input type="submit">
</br>
</br>
</form>
<?php
$name = $_POST['ID'];
echo "</br>";
if (empty($name)) {
echo '<span style="color:Red;"><b>"Please enter Hostname"</b></span>';
echo "<br>";
echo "<br>";
} else {
$Servername = "localhost";
$Username = "admin";
$Password = "password";
$Dbname = "CTT";
// Create connection
$conn = new mysqli($Servername, $Username, $Password, $Dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
} else {
$sql = "SELECT * FROM Log WHERE Hostname = '$name' ";
$result = $conn->query($sql);
echo "<br/>";
echo "<br/>";
echo "<b>Log</b>";
echo "<br/>";
echo "<table>";
if ($result->num_rows > 0) {
// output data of each row
while ($row = $result->fetch_assoc()) {
echo "<tr>";
echo "<td> --------- </td>";
echo "<td> </td>";
echo "</tr>";
echo "<tr>";
echo "<td> <b>Date </b></td>";
echo "<td>" . $row['Date'] . "</td>";
echo "</tr>";
echo "<tr>";
echo "<td> <b>Work </b></td>";
echo "<td>" . nl2br($row['Work']) . "</td>";
echo "</tr>";
echo "<tr>";
echo "<td> <b>Remarks </b> </td>";
echo "<td>" . $row['Remarks'] . "</td>";
echo "</tr>";
}
echo "</table>";
} else {
echo "0 results";
}
$conn->close();
}
}
?></p>
</div>
</div>
<hr>
</body>
</html>