-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiscellaneous.php
More file actions
43 lines (35 loc) · 1.05 KB
/
miscellaneous.php
File metadata and controls
43 lines (35 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Miscellaneous - BrownEquipment - Brown Equipment llc</title>
<?php
require("header.php");
?>
</head>
<?php //connect to database
require('admin/connection.php');
?>
<?php
require('nav.php');
?>
<div class="content-wrap">
<div class="container">
<div class="main-wrap">
<div id='wsite-content' class='wsite-elements wsite-not-footer'>
<?php //display thumbnails
require('thumbnails.php');
echo '<p class="tableTitle">Cement Storage</p>';
display_thumbnails($conn, 'SELECT item.*, locations.State FROM item, locations WHERE Type="Miscellaneous" AND Subtype="Cement Storage" AND item.Location=locations.ID');
echo '<p class="tableTitle">Other</p>';
display_thumbnails($conn, 'SELECT item.*, locations.State FROM item, locations WHERE Type="Miscellaneous" AND Subtype="Other" AND item.Location=locations.ID');
?>
</div>
</div>
</div>
<!-- end container -->
</div>
<!-- end main-wrap -->
<?php
require('footer.php');
?>
</html>