The Milk Shop System is developed using php. The project is built to manage sales and transactions. To make a new transaction, fields such as:items type , qty needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from the beginning. In this tutorial useful for making a point of sales system for a small shops.
<html>
<head>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
</head>
<body>
<nav class="navbar navbar-dark bg-danger">
<span class="navbar-brand mb-1 h1"><h1>MilkBar Inventory Management</h1></span>
</nav>
</br>
<div class="row">
<div class="col-sm-5">
<div class="container">
<div class="p-3 mb-2 bg-success text-white"><h2>Item</h2></div>
<div class="panel-body bg-danger" style="background-color:red; color: white">
<form id="tbl-project">
<div class="panel-body bg-warning style="color: white">
<table class="table table-bordered" style="color: black">
<tr>
<td>
<input type="checkbox" name="pos" value="Strawberry">
<label>Strawberry</label>
</td>
<td>
<input type="number" name="qty" id="qty" size="10px">
</td>
<td>
<select class="form-control" id="option" name="option" placeholder="option" required>
<option value="">Please Select</option>
<option value="1">ML</option>
<option value="2">L</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="pos" value="Chocolate">
<label>Chocolate </label>
</td>
<td>
<input type="number" name="qty" size="10px">
</td>
<td>
<select class="form-control" id="option" name="option" placeholder="option" required>
<option value="">Please Select</option>
<option value="1">ML</option>
<option value="2">L</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="pos" value="Vanilla">
<label> Vanilla</label>
</td>
<td>
<input type="number" name="qty" size="10px">
</td>
<td>
<select class="form-control" id="option" name="option" placeholder="option" required>
<option value="">Please Select</option>
<option value="1">ML</option>
<option value="2">L</option>
</select>
</td>
</tr>
</table>
<div>
<button type="button" class="btn btn-info" >
i have attached the video link below. which will do this tutorials step by step.
Introduction to Grocery Inventory Apps Managing grocery inventory can be a daunting task, but with…
This article explain how to make a Fish Inventory Management App in Angular.this app explain…
Introduction to Fish Inventory Management In the aquaculture industry, managing fish inventory is crucial for…
Introduction to Java GUI CRUD Java is a powerful programming language widely used for building…
Introduction to Login Form Design Designing an effective and beautiful login form is crucial for…
Introduction In today creating a responsive login form is essential for providing a seamless user…