-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.php
30 lines (21 loc) · 937 Bytes
/
nav.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
<div id="search_form">
<img src="images/easter/faces.png" id="header_image"/>
<form method="GET" action="search.php" >
<input type="text" id="search" name="search" target="_blank" autocomplete="off" placeholder="Type and press 'Enter'...">
<input type="hidden" value="Search!" id="search_button" />
</form>
</div>
<div id="notification"><img src="images/easter/krissays_small.png" /><br /><span class="notification_message">You're forgetting <strong>something</strong>!</span></div>
<div id="nav">
<div id="collectedLinks">
<div class="checklinks"><a href="checkout.php">Checkout</a> <a href="checkin.php">Checkin</a></div>
<?php
include('db.php');
$pl = mysqli_query($connection, "SELECT id,name FROM products");
while($list = mysqli_fetch_array($pl)){
//Write the line of HTML for each item
echo "· <a href=\"results.php?id=" . $list['id'] ."\">". $list['name'] . "</a> ";
}
?>
</div>
</div>