-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbrand.php
More file actions
177 lines (146 loc) · 5.49 KB
/
brand.php
File metadata and controls
177 lines (146 loc) · 5.49 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
include("includes/header.php");
if(!isset($_SESSION['admin_username']))
{
echo "<script>document.location='login.php'</script>";
}
else
{
?>
<!-- Main Content-->
<div class="main-content pt-0">
<div class="container">
<div class="inner-body">
<!-- Page Header -->
<div class="page-header">
<div>
<h2 class="main-content-title tx-24 mg-b-5">Product Brand</h2>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Product Brand</li>
</ol>
</div>
</div>
<!-- End Page Header -->
<!-- Row -->
<div class="row sidemenu-height">
<div class="col-lg-12">
<div class="card custom-card">
<div class="card-body">
<div class="row">
<!-- Add Category Form -->
<div class="col-md-6" style="border: 1px solid #eee; padding: 10px;">
<div class="col">
<form method="post" action="add-brand.php" enctype="multipart/form-data">
<div class="row row-sm">
<div class="col-md-12 col-lg-12 col-xl-12">
<div class="">
<div class="form-group col-md-9">
<label class=""> Brand Name </label>
<input class="form-control" required="" name="brand_name" type="text">
</div>
<div class="form-group col-md-9">
<button type="submit" name="add_brand" class="btn ripple btn-main-primary">
Add Brand
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- -->
<div class="col-md-6">
<div class="table-responsive">
<table class="table" id="example2">
<thead>
<tr>
<th class="wd-20p">No</th>
<th class="wd-15p">Brand Name</th>
<th class="wd-15p">Action</th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
$get_brand = "SELECT * FROM tbl_brand";
$run_brand = mysqli_query($db, $get_brand);
while($row_brand = mysqli_fetch_array($run_brand))
{
$brand_id = $row_brand['brand_id'];
$brand_name = $row_brand['brand_name'];
$i++;
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $brand_name; ?></td>
<td>
<a class="btn ripple btn-primary" data-target="#update<?php echo $brand_id; ?>" data-toggle="modal" href="#update<?php echo $brand_id; ?>"><i class="fa fa-eye"></i></a>
<a class="btn ripple btn-danger" data-target="#delete<?php echo $brand_id; ?>" data-toggle="modal" href="#delete<?php echo $brand_id; ?>">
<i class="fa fa-trash"></i>
</a>
</td>
</tr>
<!-- Large Modal -->
<div class="modal" id="update<?php echo $brand_id; ?>">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content modal-content-demo">
<div class="modal-header">
<h6 class="modal-title">Update Brand</h6><button aria-label="Close" class="close" data-dismiss="modal" type="button"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form method="post" action="update-brand.php">
<div class="form-group col-md-9">
<label>Brand Name</label>
<input type="hidden" name="brand_id" class="form-control" value="<?php echo $brand_id; ?>">
<input type="text" name="brand_name" class="form-control" value="<?php echo $brand_name; ?>">
</div>
</div>
<div class="modal-footer">
<button class="btn ripple btn-primary" type="submit">Update Brand</button>
<button class="btn ripple btn-secondary" data-dismiss="modal" type="button">Close</button>
</div>
</form>
</div>
</div>
</div>
<!--End Large Modal -->
<!-- Delete Modal -->
<div class="modal" id="delete<?php echo $brand_id; ?>">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content modal-content-demo">
<div class="modal-header">
<h6 class="modal-title">Delete Brand Details</h6><button aria-label="Close" class="close" data-dismiss="modal" type="button"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form action="brand-del.php" method="post">
<input type="hidden" class="form-control" name="brand_id" value="<?php echo $brand_id; ?>" required>
<p>Are you sure you want to <b>Delete</b> this brand?</p>
</div>
<div class="modal-footer">
<button class="btn ripple btn-primary" name="delete" type="submit">Yes</button>
<button class="btn ripple btn-danger" data-dismiss="modal" type="button">No</button>
</div>
</form>
</div>
</div>
</div>
<!--End Delete Modal -->
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
</div>
</div>
</div>
<!-- End Main Content-->
<?php include("includes/footer.php"); ?>
<?php } ?>