-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-add.php
86 lines (82 loc) · 3.08 KB
/
product-add.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
<?php
require_once("connection/connectdb.php");
?>
<?php
try {
$sql = "select * from category";
$stmt_cat = $conn->query($sql);
$rows_cat = $stmt_cat->fetchAll();
} catch(PDOException $ex) {
echo "Error: " . $ex->getMessage();
}
if(isset($_POST['addnew'])) {
try {
$sql = "INSERT INTO product VALUES (?, ?, ?, ?, ?, ?)";
$stmt = $conn->prepare($sql);
$stmt->bindParam(1, $_POST['id']);
$stmt->bindParam(2, $_POST['name']);
$stmt->bindParam(3, $_POST['price']);
$stmt->bindParam(4, $_POST['image']);
$stmt->bindParam(5, $_POST['details']);
$stmt->bindParam(6, $_POST['category']);
$stmt->execute();
header('Location: product-list.php');
} catch(PDOException $ex) {
echo "Error: " . $ex->getMessage();
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div class="container mt-4">
<h2>Add new product</h2>
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="POST">
<div class="mb-3 mt-3">
<label>Product ID:</label>
<input type="text" class="form-control"
placeholder="Enter product id" name="id">
</div>
<div class="mb-3">
<label >Name:</label>
<input type="text" class="form-control"
placeholder="Enter product name" name="name">
</div>
<div class="mb-3">
<label> Price</label>
<input type="number" class="form-control"
placeholder="Enter product price" name="price">
</div>
<div class="mb-3">
<label> Image :</label>
<input type="file" class="form-control" name="image">
</div>
<div class="mb-3">
<label> Details:</label>
<textarea type="detailsr" rows="5" class="form-control"> </textarea>
</div>
<div class="mb-3">
<label> Category</label>
<select name="category" class="form-control">
<?php foreach($rows_cat as $row) { ?>
<option value="<?= $row['categoryID'] ?>">
<?php echo $row['categoryName'] ?>
</option>
<?php } ?>
</select>
</div>
<button type="submit" class="btn btn-primary" name="addnew">Save</button>
<a href="product-list.php" class="btn btn-success">Back</a>
</form>
</div>
</body>
</html>