-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-log.php
151 lines (111 loc) · 2.98 KB
/
new-log.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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
}
input[type='checkbox'] {
width: 100px;
height: 25px;
}
input[type='text'] {
width: 100%;
}
</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>New log</b></h3>
<form action="new-log.php" method="post" onkeydown="return event.key != 'Enter';">
<table>
<tr>
<td>Hostname</td>
<td><input type="text" name="Hostname"></td>
</tr>
<tr>
<td>Issue(s)</td>
<td><input type="text" name="Issues"></td>
</tr>
<tr>
<td>Remark(s)</td>
<td><input type="text" name="Remarks"></td>
</tr>
<tr>
<td></td>
<td><input type="submit"></td>
</tr>
</table>
</br>
</br>
</form>
<?php
$Hostname = $_POST['Hostname'];
$Issues = $_POST['Issues'];
$Remarks = $_POST['Remarks'];
echo "<br>";
if (empty($Hostname)) {
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 {
$TotalRemarks = 'Issue(s): ' . $Issues . '\n\nRemark(s): ' . $Remarks;
$TotalWork = ' - ';
if (empty($TotalWork)) {
echo '<span style="color:Red;"><b>"Please check a checkbox";</b></span>';
echo "</br>";
echo "</br>";
} else {
$Sql = "INSERT INTO Log (Hostname,Work,Remarks) VALUES ('$Hostname','$TotalWork','$TotalRemarks' )";
if ($conn->query($Sql) === TRUE) {
//inserting of details from checklist into log table successful.
echo '<span style="color:Green;"><b>"New record created successfully"</b></span>';
echo "</br>";
echo "</br>";
}
else {
//inserting of details from checklist into log table unsuccessful.
echo "Error: " . $sql . "<br>" . $conn->error;
echo "</br>";
echo "</br>";
}
}
}
$conn->close();
}
?>
</div>
</div>
</div>
</body>
</html>