File "product_detail.php"
Full path: /home/atrmarke/public_html/atrdemolive.site/if/pages/product_detail.php
File
size: 0.01 KB (8.69 KB bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
ob_start();
include("db/cn.php");
$prodName = $_GET["product_name"];
?>
<!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, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Irfan Traders</title>
<!-- Custom fonts for this template-->
<link href="../vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@200;300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Custom styles for this template-->
<link href="../css/sb-admin-2.min.css" rel="stylesheet">
<link href="../css/sb-admin-2.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<style>
body {
font-family: 'Quicksand', sans-serif;
}
.chart-container {
position: relative;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
canvas {
max-width: 100%;
height: auto;
}
.bg-gradient-primary{
background:#0A4657;
color:#fff;
}
.btn-primary{
background:#0A4657;
color:#fff;
border:1px #0A4657 solid;
}
.btn-primary:hover{
background:#fff;
border:1px #0A4657 solid;
color:#0A4657;
}
.chart-container {
position: relative;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
canvas {
max-width: 100%;
height: auto;
}
.fa-download:hover{
color:#953E39;
}
#product-container-wrapper {
max-height: 800px; /* Adjust the maximum height as needed */
overflow-y: auto; /* Enable vertical scroll when content overflows */
}
</style>
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
<?php
include("common/sd.php");
?>
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
<nav class="navbar navbar-expand navbar-light bg-white topbar mb-4 static-top shadow">
<!-- Sidebar Toggle (Topbar) -->
<button id="sidebarToggleTop" class="btn btn-link d-md-none rounded-circle mr-3">
<i class="fa fa-bars"></i>
</button>
<!-- Topbar Search -->
<?php include('common/log.php'); ?>
<!-- Topbar Navbar -->
</nav>
<!-- End of Topbar -->
<!-- Begin Page Content -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-7">
<h3 style="color:#212529;font-weight:700;"> Product Detail</h3>
</div>
<div class="col-sm-5" style="border:1px solid #0A4657; padding:7px; border-radius:77px;background:#0A4657;">
<div class="search-container">
<input type="text" id="search-input" class="form-control" placeholder="Search Product by Name:-" style="border-radius:77px;border:none;" />
<div class="search-icon">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h5 style="width:400px; background:#87B23F;font-weight:700; color:#0A4657; padding:10px; border-radius:10px; text-align:center;"> HighLight Product Have less Quantity </h5>
</div>
</div>
</div>
<br />
<div class="container-fluid text-center">
<div class="row">
<div class="col-sm-12" id="product-container-wrapper">
<div class="row text-center" id="products-container" >
<?php
// Fetch products from database
$sql = "SELECT * FROM products where product_name = '$prodName'";
$result = $connection->query($sql);
if ($result->num_rows > 0) {
echo '<table id="productTable" class="table table-stripped table-hover table-sm bg-white">';
echo '<tr style="color:#fff; background:#212529; font-size:14px;">';
echo '<th>Sr#</th>';
echo '<th>Item Code</th>';
echo '<th>R.~ Qty ~</th>';
echo '<th>Product</th>';
echo '<th>Sale Price(Rs)</th>';
echo '<th>Total Amount(Rs)</th>';
echo '<th>Batch No</th>';
echo '<th>Update</th>';
echo '</tr>';
$sr_no = 1;
while ($row = $result->fetch_assoc()) {
// Check if quantity is less than 5
$rowStyle = $row["total_quantity"] < 5 ? 'background-color: #60848F; color: white;' : '';
echo '<tr style="font-size:14px; ' . $rowStyle . '" class="product-row" data-category="'.$row["company"].'">';
echo '<td style="font-weight:600;">' . $sr_no++ . '</td>';
echo '<td style="font-weight:600;">' . $row["product_id"] . '</td>';
echo '<td style="font-weight:600;">' . $row["total_quantity"] . '</td>';
echo '<td style="font-weight:700;">' . $row["product_name"] . '</td>';
echo '<td class="text-capitalize"> ' . $row["rpperpack"] . ' </td>';
echo '<td> ' . $row["total_amount"] . ' </td>';
echo '<td class="text-capitalize" style="background:#87B23F;color:#fff;font-weight:700;"> ' . $row["batch_no"] . ' </td>';
echo '<td><a href="product_update.php?product_id=' . $row["product_id"] . '"><button type="button" class="btn btn-dark btn-sm">
<i class="fas fa-wrench"></i></button></a></td>';
echo '</tr>';
}
echo '</table>';
} else {
echo "<p style='background:#0A4657; color:#fff; text-align:center; font-weight:700; width:100%;padding:10px;border-radius:7px;'>No products found</p>";
}
?>
</div>
</div>
<div class="" >
</div>
</div>
</div>
<!-- /.container-fluid -->
</div>
<br><br>
<!-- End of Main Content -->
<!-- Footer -->
<?php include("common/main_ft.php"); ?>
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<!-- Logout Modal-->
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">Select "Logout" below if you are ready to end your current session.</div>
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
<a class="btn btn-primary" href="">Logout</a>
</div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("search-input").addEventListener("input", function() {
var searchText = this.value.toLowerCase();
var rows = document.querySelectorAll(".product-row");
rows.forEach(function(row) {
var productName = row.querySelector("td:nth-child(7)").textContent.toLowerCase();
if (productName.includes(searchText)) {
row.style.display = "table-row";
} else {
row.style.display = "none";
}
});
});
});
</script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript-->
<script src="../vendor/jquery/jquery.min.js"></script>
<script src="../vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<script src="../vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for all pages-->
<script src="../js/sb-admin-2.min.js"></script>
</body>
</html>