-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbms.php
More file actions
96 lines (79 loc) · 2.72 KB
/
dbms.php
File metadata and controls
96 lines (79 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<title>DBMS</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
#leftbox {
float:left;
width:25%;
height:280px;
}
#middlebox{
float:left;
width:25%;
height:280px;
}
#rightbox{
float:right;
width:25%;
height:280px;
}
h1{
text-align:center;
}
#content{
margin-top: 200px;
}
#box{
margin-top: 50px;
}
#empty{
background-color: #FF7F50;
width: 100%;
height: 200px;
}
.footer{
background-color: #000;
color:#fff;
font-size:14px;
padding-top: 20px;
padding-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div id="content">
<h1>DataBase Management</h1>
<center>
<div id="box">
<div id = "leftbox">
<h2>Customer Details</h2><hr>
<a href="customer.php"><button class="btn btn-primary">Customer Data</button></a>
</div>
<div id = "middlebox">
<h2>Product Details</h2><hr>
<a href="pdatabase.php"><button class="btn btn-danger">Products Data</button></a>
</div>
<div id = "rightbox">
<h2>All Details</h2><hr>
<a href="details.php"><button class="btn btn-success">Detailed Data</button></a>
</div>
<div id = "rightbox">
<h2>Order Details</h2><hr>
<a href="order-details.php"><button class="btn btn-warning">Order Data</button></a>
</div>
</div>
</center>
</div>
</div>
<div id="empty">
</div>
<div class="footer">
<center><p>Copyright @ LifeStyle Store all rights are resivered | Contact us +91 8928669402</p></center>
</div>
</body>
</html>