-
Notifications
You must be signed in to change notification settings - Fork 1
/
editproduct.php
189 lines (144 loc) · 6.82 KB
/
editproduct.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
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
178
179
180
181
182
183
184
185
186
187
188
189
<?php include('./constant/layout/head.php');?>
<?php include('./constant/layout/header.php');?>
<?php include('./constant/layout/sidebar.php');?>
<?php include('./constant/connect.php');
$sql="SELECT * from product where product_id='".$_GET['id']."'";
$result=$connect->query($sql)->fetch_assoc();
?>
<div class="page-wrapper">
<div class="row page-titles">
<div class="col-md-5 align-self-center">
<h3 class="text-primary">Edit Product Management</h3> </div>
<div class="col-md-7 align-self-center">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="javascript:void(0)">Home</a></li>
<li class="breadcrumb-item active">Edit Product</li>
</ol>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-8" style=" margin-left: 10%;">
<div class="card">
<div class="card-title">
</div>
<div id="add-brand-messages"></div>
<div class="card-body">
<div class="input-states">
<form action="php_action/editProductImage.php?id=<?php echo $_GET['id'];?>" method="POST" id="updateProductImageForm" class="form-horizontal" enctype="multipart/form-data">
<fieldset>
<h1>Update Photo</h1>
<div class="changeUsenrameMessages"></div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Product Image:</label>
<div class="col-sm-9">
<img src="assets/myimages/<?php echo $result['product_image']?>" style="width:250px; height:250px;" >
<input type="hidden" name="old_image" value="<?php echo $result['product_image']?>">
>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label for="editProductImage" class="col-sm-3 control-label">Select Photo: </label>
<div class="col-sm-9">
<div id="kv-avatar-errors-1" class="center-block" style="display:none;"></div>
<div class="kv-avatar center-block">
<input type="file" class="form-control" id="productImage" placeholder="Product Name" name="productImage" class="file-loading" style="width:auto;"/>
</div>
</div>
</div>
</div>
<button type="submit" name="btn" id="changeUsernameBtn" class="btn btn-primary btn-flat m-b-30 m-t-30">Save Changes</button>
</fieldset>
</form>
<form class="form-horizontal" method="POST" id="submitProductForm" action="php_action/editProduct.php?id=<?php echo $_GET['id'];?>"enctype="multipart/form-data">
<fieldset>
<h1>Product Info</h1>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Product Name</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="editProductName" value="<?php echo $result['product_name']?>" name="editProductName" autocomplete="off">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Quantity</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="editQuantity" value="<?php echo $result['quantity']?>" name="editQuantity" autocomplete="off">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Rate</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="editRate" value="<?php echo $result['rate']?>" name="editRate" autocomplete="off">
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Brand Name</label>
<div class="col-sm-9">
<select id="editBrandName" name="editBrandName" required class="form-control">
<?php
$sql = ("SELECT * FROM brands where brand_status=1 ");
//echo $sql;exit;
$results = mysqli_query($connect, $sql);
//echo "23";exit;
while ($rows = mysqli_fetch_assoc($results)){
//echo $row['categories_name'];exit;?>
<option value="<?php echo $rows['brand_id']; ?>"<?php if($result['brand_id']==$rows['brand_id']){echo "selected";}?>><?php echo $rows['brand_name']; ?></option>";
<?php }
?></select>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Category Name</label>
<div class="col-sm-9">
<select id="editCategoryName" name="editCategoryName" required class="form-control">
<?php
$sql = ("SELECT * FROM categories where categories_status=1 ");
//echo $sql;exit;
$result1 = mysqli_query($connect, $sql);
//echo "23";exit;
while ($row = mysqli_fetch_assoc($result1)){
//echo $row['categories_name'];exit;?>
<option value="<?php echo $row['categories_id']; ?>"<?php if($result['categories_id']==$row['categories_id']){echo "selected";}?>><?php echo $row['categories_name']; ?></option>";
<?php }
?></select>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<label class="col-sm-3 control-label">Status</label>
<div class="col-sm-9">
<select class="form-control" id="editProductStatus" name="editProductStatus">
<option value="1" <?php
if($result['active']=="1")
{
echo "selected";
}
?>>Available</option>
<option value="2" <?php if($result['active']=="2"){ echo "selected";}?>>Not Available</option>
</select>
</div>
</div>
</div>
<button type="submit" name="create" id="createCategoriesBtn" class="btn btn-primary btn-flat m-b-30 m-t-30">Update</button>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
<?php include('./constant/layout/footer.php');?>
<script src="custom/js/product.js"></script>