-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathadd-prod-warehouse.php
More file actions
97 lines (78 loc) · 2.71 KB
/
add-prod-warehouse.php
File metadata and controls
97 lines (78 loc) · 2.71 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
<?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">Warehouse</h2>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Add Product to Warehouse </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">
<a href="warehouse.php" class="btn btn-primary mb-4">Back to warehouse</a><hr>
<form method="post" action="warehouse-prod-add.php">
<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="">Product Name</label>
<select name="prod_name" class="form-control select select2">
<option label="Date"></option>
<?php
$get_prod = "SELECT * FROM product_tbl";
$run_prod = mysqli_query($db, $get_prod);
while($row_prod = mysqli_fetch_array($run_prod))
{
$prod_id = $row_prod['prod_id'];
$prod_name = $row_prod['prod_name'];
echo "<option value='$prod_id'>$prod_name</option>";
}
?>
</select>
</div>
<div class="form-group col-md-9">
<label class=""> Product Quantity </label>
<input class="form-control" required="" name="prod_qty" type="text">
</div>
<div class="form-group col-md-9">
<label class=""> Expiry Date </label>
<input class="form-control" required="" name="expiry_date" type="text">
</div>
<div class="form-group col-md-9">
<button type="submit" name="add-prod" class="btn ripple btn-main-primary">
Add Product
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- End Row -->
</div>
</div>
</div>
<!-- End Main Content-->
<?php include("includes/footer.php"); ?>
<?php } ?>