-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminadd.html
79 lines (37 loc) · 1.26 KB
/
adminadd.html
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
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>Best Sellers</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body >
<nav class ="topnav"> <a href="p4.html">Home</a> </span>
<a href="categoryadmin.php">Categories</a>
<a style="text-decoration: none" href="bestsellersadmin.php">Best Sellers</a> </span>
<a href="newReleaseadmin.php">New Releases</a>
<a href="p3admin.php">Contact</a> <a href="about2.php">About</a>
<a href="adminadd.php"> insertproduct </a>
<a href="showuser.php"> user </a>
<a href="showproduct.php"> dproduct </a>
<a href="logout.php"> Logout </a> </nav>
if(!isset($_SESSION))
{
session_start();
}
<br>
<br>
<h1>add product </h1>
<div class ="form1">
<form action="addproduct.php" method="post" >
<label>name </label>
<input type="text" name="name" placeholder="name "required>
<label>type </label>
<input type="type" name="type" placeholder="boy or girl "required>
<label>catigor </label>
<input type="cat" name="cat" placeholder="from 0 to 5 "required>
<input type="submit" name="submit" value="Submit">
<button>Reset</button>
</form>
</div>
</body>
</html>