-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventory.php
More file actions
67 lines (60 loc) · 1.96 KB
/
inventory.php
File metadata and controls
67 lines (60 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<! DOCTYPE html>
<?php
require_once('sportsfanConnect.php');?>
<html lang="en">
<link rel="stylesheet" type="text/css" href="style.css" media="screen">
<wrapper>
<body>
<head>
<menu>
<img src="thesportsfanicon.jpg" alt="The SportsFan" width="1000" height="180">
</menu>
<meta charset="utf-8">
<meta name="The SportsFan Management System" content="TheSportsFan.com">
<title>The SportsFan</title>
</head>
<nav>
<li><a href="SportsFanMainPage.php">Home</a></li>
<li><a href="employees.php">Sales People Records</a></li>
<li><a href="suppliers.php">Supplier Records</a></li>
<li><a href="inventory.php">Inventory Records</a></li>
<li><a href="sales.php">Sales Records</a></li>
<li><a href="customers.php">Customer Records</a></li>
</nav>
</body>
<br>
<main>
<body>
<p>
<form action="listItems.php" method="POST">
<tr>
<td>
<select name="searchSubmission">
<option value="All">List All</option>
<option value="Add">Add</option>
<option value="Edit">Edit</option>
<option value="Search">Search</option>
</select>
</td>
<td>ID: <input type="text" name="searchValue" value=""></td>
<td>Restrictions: <input type="text" name="lastname" value=""></td>
</tr>
</p>
</body>
</main>
<main>
<br><br>
<input type="submit" value="Submit">
<input type="reset" name="reset" value="Reset">
</main>
<br><br><br>
<p><b>Notice:</b> To add an item into the records simply select <b>'Add'</b> from
the drop down menu and select submit. You will then be redirected to another page and
prompted to confirm additions to the record system. </p>
Copyright © TheSportsFan.com
</footer>
<i> Need Help? Find us on<a href="url here">ScootsSoltuions.com </a> </i>
</form>
</wrapper>
</body>
</html>