|
Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.174 Web Server : LiteSpeed System : Linux sg-nme-web1393.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u926327694/domains/smsoft.in/public_html/demo/js/../Inventory/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
if (strlen($_SESSION['imsaid']==0)) {
header('location:logout.php');
} else{
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Inventory Management System|| Dashboard</title>
<?php include_once('includes/cs.php');?>
</head>
<body>
<?php include_once('includes/header.php');?>
<?php include_once('includes/sidebar.php');?>
<!--sidebar-menu-->
<!--main-container-part-->
<div id="content">
<!--breadcrumbs-->
<div id="content-header">
<div id="breadcrumb"> <a href="dashboard.php" title="Go to Home" class="tip-bottom"><i class="icon-home"></i> Home</a></div>
</div>
<!--End-breadcrumbs-->
<!--Action boxes-->
<br />
<div class="container-fluid">
<div class="widget-box widget-plain">
<div class="center">
<ul class="quick-actions">
<?php $query1=mysqli_query($con,"Select * from tblbrand where Status='1'");
$brandcount=mysqli_num_rows($query1);
?>
<li class="bg_lb"> <a href="manage-brand.php"><i class="fa fa-building-o fa-3x"></i><br />
<span class="label label-important" style="margin-top:5%"><?php echo $brandcount;?></span> Brands </a> </li>
<?php $query2=mysqli_query($con,"Select * from tblcategory where Status='1'");
$catcount=mysqli_num_rows($query2);
?>
<li class="bg_ly"> <a href="manage-category.php"> <i class="icon-list fa-3x"></i>
<span class="label label-success" style="margin-top:7%"><?php echo $catcount;?></span> Categories </a> </li>
<?php $query3=mysqli_query($con,"Select * from tblsubcategory where Status='1'");
$subcatcount=mysqli_num_rows($query3);
?>
<li class="bg_lo"> <a href="manage-subcategory.php"> <i class="icon-th"></i> <span class="label label--success" style="margin-top:7%"><?php echo $subcatcount;?> </span> Subcategories</a> </li>
<?php $query4=mysqli_query($con,"Select * from tblproducts");
$productcount=mysqli_num_rows($query4);
?>
<li class="bg_ls"> <a href="manage-product.php"> <i class="icon-list-alt"></i>
<span class="label label-success" style="margin-top:7%"><?php echo $productcount;?></span> Products</a> </li>
<?php $query5=mysqli_query($con,"Select * from tblcustomer");
$totuser=mysqli_num_rows($query5);
?>
<li class="bg_lo span3"> <a href="form-common.html"> <i class="icon-user"></i>
<span class="label label--success" style="margin-top:5%"><?php echo $totuser;?> </span> Users</a> </li>
</ul>
</div>
</div>
<div class="widget-box widget-plain" style="margin-top:12%">
<div class="center">
<h3 style="color:blue">Sales</h3>
<hr />
<ul class="site-stats">
<?php
//todays sale
$query6=mysqli_query($con,"select tblcart.ProductQty as ProductQty,tblproducts.Price
from tblcart
join tblproducts on tblproducts.ID=tblcart.ProductId where date(CartDate)=CURDATE() and IsCheckOut='1'");
while($row=mysqli_fetch_array($query6))
{
$todays_sale=$row['ProductQty']*$row['Price'];
$todysale+=$todays_sale;
}
?>
<li class="bg_lh"><font style="font-size:22px; font-weight:bold">Rs</font><strong><?php echo number_format($todysale,2);?></strong> <small>Today's Sales</small></li>
<?php
//Yesterday's sale
$query7=mysqli_query($con,"select tblcart.ProductQty as ProductQty,tblproducts.Price
from tblcart
join tblproducts on tblproducts.ID=tblcart.ProductId where date(CartDate)=CURDATE()-1 and IsCheckOut='1'");
while($row=mysqli_fetch_array($query7))
{
$yesterdays_sale=$row['ProductQty']*$row['Price'];
$yesterdaysale+=$yesterdays_sale;
}
?>
<li class="bg_lh"><font style="font-size:22px; font-weight:bold">Rs</font> <strong><?php echo number_format($yesterdaysale,2);?></strong> <small>Yesterday's Sale </small></li>
<?php
//Last Sevendays Sale
$query8=mysqli_query($con,"select tblcart.ProductQty as ProductQty,tblproducts.Price
from tblcart
join tblproducts on tblproducts.ID=tblcart.ProductId where date(tblcart.CartDate)>=(DATE(NOW()) - INTERVAL 7 DAY) and tblcart.IsCheckOut='1' ");
while($row=mysqli_fetch_array($query8))
{
$sevendays_sale=$row['ProductQty']*$row['Price'];
$tseven+=$sevendays_sale;
}
?>
<li class="bg_lh"><font style="font-size:22px; font-weight:bold">Rs</font> <strong><?php echo number_format($tseven,2);?></strong> <small>Sevenday's Sale</small></li>
<?php
//Total Sale
$query9=mysqli_query($con,"select tblcart.ProductQty as ProductQty,tblproducts.Price
from tblcart
join tblproducts on tblproducts.ID=tblcart.ProductId where IsCheckOut='1' ");
while($row=mysqli_fetch_array($query9))
{
$total_sale=$row['ProductQty']*$row['Price'];
$totalsale+=$total_sale;
}
?>
<li class="bg_lh"><font style="font-size:22px; font-weight:bold">Rs</font> <strong><?php echo number_format($totalsale,2);?></strong> <small>Total Sales</small></li>
</ul>
</div>
</div>
</div>
</div>
<?php include_once('includes/footer.php');?>
<?php include_once('includes/js.php');?>
</body>
</html>
<?php } ?>