This repository has been archived by the owner on Jan 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathadmin.php
55 lines (50 loc) · 2.06 KB
/
admin.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
<?php
require ('./includes/config.inc.php');
require (MYSQL);
include ('./includes/header.php');
?>
<div id="home">
<div class="grid_12">
<p><a href="home.php">Home</a> > <a class="current" href="admin.php">Admin</a></p>
<?php echo searchBar(); ?>
</div>
<div class="grid_8">
<div id="check">
<h1>Enter a New Item:</h1>
<form action="">
<fieldset>
<p><input type="text" name="productID" size="45px" /> Product ID</p>
<p><input type="text" name="productName" size="20px" /> Product Name</p>
<p><input type="text" name="brandName" size="45px" /> Brand Name</p>
<p><input type="text" name="description" size="45px" /> Description</p>
<p><input type="text" name="feat1" size="35px" /> Feature 1</p>
<p><input type="text" name="feat2" size="35px" /> Feature 2</p>
<p><input type="text" name="feat3" size="30px" /> Feature 3</p>
<p><input type="text" name="category" size="20px" /> Category</p>
<p><input type="text" name="sku" size="25px" /> SKU</p>
<p><input type="text" name="stock" size="25px" /> Stock</p>
<p><input type="text" name="cost" size="10px" /> Cost</p>
<p><input type="text" name="price" size="10px" /> Price</p>
<p><input type="text" name="salePrice" size="10px" /> Sale Price</p>
<p><input type="text" name="productImage" size="45px" /> Product Image</p>
</fieldset>
</form>
<h1>Or check an item's stock: </h1>
<p><input type="text" name="productImage" size="45px" /> (enter Product ID)</p>
</div>
</div>
<div class="grid_3">
<div id="contact">
<h2>In Store Pick-up?</h2>
<ul>
<li>4000 Central Florida Blvd</li>
<li>Orlando, FL 32816</li>
<li>1-555-EDU-CATE</li>
<li> </li>
<li><h5>Questions/Comments?</h5></li>
<li><a class="shopnow" href="contact.php">Contact us</a> via email or give us a call between <em class="it">9am-6pm M-F</em>.</li>
</ul>
</div>
</div>
</div>
<?php include ('./includes/footer.php'); ?>