Update view_log.php

This commit is contained in:
jakani24
2024-01-21 16:31:36 +01:00
parent 95ff601a38
commit 7643c0fd20

View File

@@ -77,6 +77,13 @@ if($perms[2]!=="1"){
echo('</tr>'); echo('</tr>');
echo('</thead>'); echo('</thead>');
echo('<tbody>'); echo('<tbody>');
//put filter options here
echo('<tr>');
echo('<td>---</td>');
echo('<form action="view_log.php" method="get">');
echo('<td><input type="text" class="form-control" name="loglevel" placeholder="Loglevel"></td>');
while($num_of_log_entrys!=0){ while($num_of_log_entrys!=0){
$sql = "SELECT * FROM log where id > $last_id"; $sql = "SELECT * FROM log where id > $last_id";
$stmt = $conn->prepare($sql); $stmt = $conn->prepare($sql);