-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalertframe.php
59 lines (54 loc) · 1.39 KB
/
alertframe.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
<?php
include 'php/includes/header.php';
if(!isset($_SESSION['email'])){
Header('Location:logout.php');
}
?>
<h3 style="margin-top:-50px;">Missing Vehicles</h3>
<style type="text/css">
table th{
padding:10px;
font-family:trebuchet ms;
color:#fff;
background:#1B1B1B;
text-align:center;
}
table tr td{
border:1px solid #090909;
padding:10px;
font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
color:#000000;
}
table tr td.carry-up{
height:80px;
}
</style>
<table style="width:100%;">
<?php
echo '<tr style="border:1px solid #000;">';
echo '<th><b>Model</b></th>';
echo '<th><b>Number plate</b></th>';
echo '<th><b>Image</b></th>';
echo '<th><b>Description</b></th>';
echo '<th><b>Phone Number</b></th>';
echo '<th><b>Action</b></th>';
echo '</tr>';
$db_conn -> getAlerts1();
?>
</table>
<h3>Missing Persons</h3>
<table>
<?php
echo '<tr style="1px solid #000">';
echo '<td><b>Status</b></td>';
echo '<td><b>Full Names</b></td>';
echo '<td><b>Address</b></td>';
echo '<td><b>Image</b></td>';
echo '<td><b>Description</b></td>';
echo '<td><b>Phone Number</b></td>';
echo '<td><b>Action</b></td>';
echo '</tr>';
$db_conn -> getAlerts2();
?>
</table>
</div>