-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedit.php
66 lines (58 loc) · 2.87 KB
/
edit.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Update Product</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.wrapper{
width: 600px;
margin: 0 auto;
}
</style>
</head>
<?php
$id=$_GET["id"];
// Include config file
require_once "dist/php/connection.php";
// Attempt select query execution
$sql = "SELECT * FROM products where product_id=$id";
$result = mysqli_query($conn, $sql);
$row = mysqli_fetch_array($result);
$image= $row['product_image'];
$name=$row['product_name'];
$price=$row['product_price']
?>
<body>
<div class="wrapper">
<div class="container fluid shadow rounded pt-4 pb-4 mt-4 mb-4">
<div class="row">
<div class="col-md-12">
<h2 class="mt-5">Update Products</h2>
<p>Please edit the input values and submit to update the products record.</p>
<form action="validate.php" enctype="multipart/form-data" method="post">
<div class="form-group">
<label>Product Image</label>
<input type="file" name="picture" class="form-control <?php echo (!empty($image_err)) ? 'is-invalid' : ''; ?>" value="<?php echo base64_encode($row['product_image']); ?>">
<span class="invalid-feedback"><?php echo $image_err;?></span>
</div>
<div class="form-group">
<label>Product Name</label>
<input type="text" name="name" class="form-control <?php echo (!empty($name_err)) ? 'is-invalid' : ''; ?>" value="<?php echo $name; ?>"></input>
</div>
<div class="form-group">
<label>Product Price</label>
<input type="text" name="price" class="form-control <?php echo (!empty($price_err)) ? 'is-invalid' : ''; ?>" value="<?php echo $price; ?>">
<span class="invalid-feedback"><?php echo $price_err;?></span>
</div>
<input type="hidden" name="id" value="<?php echo $id; ?>"/>
<input type="submit" class="btn btn-primary" value="Submit">
<a href="landing_Adminpage.php" class="btn btn-secondary ml-2">Cancel</a>
</form>
</div>
</div>
</div>
</div>
</body>
</html>