����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����403WebShell
403Webshell
Server IP : 162.0.232.25  /  Your IP : 18.221.161.43
Web Server : LiteSpeed
System : Linux premium276.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User : kwacuqig ( 988)
PHP Version : 8.2.26
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/kwacuqig/bm1holdings-ltd.com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/kwacuqig/bm1holdings-ltd.com/index-copy.php
<?php
include './header.php';
include './assets/php/connect.php';
include './assets/php/filterFile.php';
?>
<!-- <div class="preloader">
    <div class="preloader-inner">
        <div class="preloader-icon">
            <span></span>
            <span></span>
        </div>
    </div>
</div> -->
<div class="product-area section">
    <div class="container">
        <div class="row">
            <div class="col-12">
                <div class="section-title d-flex justify-content-between align-center mt-1">
                    <div class="d-flex section-title-left">
                        <i class="flaticon-menu"></i>
                        <h2>Categories</h2>
                    </div>
                    <div class="section-title-right">
                        <a href="services">View More <i class="far fa-long-arrow-right"></i></a>
                    </div>
                </div>
            </div>
        </div>
        <div class="row">
            <div class="col-lg-3 col-6 mb-4">
                <a href="products?category=Phones">
                    <div class="single-category">
                        <div class="d-flex">
                            <i class="icon-laptop2"></i>
                            <span>Electronics</span>
                        </div>
                    </div>
                </a>
            </div>
            <div class="col-lg-3 col-6 mb-4">
                <a href="products?category=Cars">
                    <div class="single-category">
                        <div class="d-flex">
                            <i class="icon-car"></i>
                            <span>Cars</span>
                        </div>
                    </div>
                </a>
            </div>
            <div class="col-lg-3 col-6 mb-4">
                <a href="products?category=Fashion">
                    <div class="single-category">
                        <div class="d-flex">
                            <i class="far fa-tshirt"></i>
                            <span>Fashion</span>
                        </div>
                    </div>
                </a>
            </div>
            <div class="col-lg-3 col-6 mb-4">
                <a href="products?category=Foods">
                    <div class="single-category">
                        <div class="d-flex">
                            <i class="fas fa-hamburger"></i>
                            <span>Foods</span>
                        </div>
                    </div>
                </a>
            </div>
        </div>
    </div>
</div>

<?php
include './assets/php/connect.php';
$query = "SELECT * FROM `categories` ORDER BY `cid` DESC";
$run = mysqli_query($conn, $query) or die(mysqli_error($conn));
while ($row2 = mysqli_fetch_array($run)) {
?>
    <!-- <?php echo $row2['category'];?> -->
    <div class="product-area section">
        <div class="container">
            <div class="row">
                <div class="col-12">
                    <div class="section-title d-flex justify-content-between align-center">
                        <div class="d-flex section-title-left">
                            <i class="<?php echo $row2['icon'];?>"></i>
                            <h2><?php echo $row2['category'];?></h2>
                        </div>
                        <div class="section-title-right">
                            <a href="products?category=<?php echo $row2['category'];?>">View More <i class="far fa-long-arrow-right"></i></a>
                        </div>
                    </div>
                </div>
            </div>
            <div class="product-slider owl-carousel owl-theme">
                <?php
                include './assets/php/connect.php';
                $query = "SELECT * FROM `products` WHERE `category`='".$row2['category']."' ORDER BY `pid` DESC LIMIT 8";
                $run = mysqli_query($conn, $query) or die(mysqli_error($conn));
                while ($row = mysqli_fetch_array($run)) {
                ?>
                    <div class="item">
                        <div class="single-product">
                            <div class="product-img">
                                <a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>">
                                    <img class="product-img" src="assets/products/<?php echo $row['image']; ?>" alt="#">
                                </a>
                                <div class="button-head">
                                    <div class="product-action">
                                        <a data-bs-toggle="modal" data-bs-target="#shop-<?php echo $row['pid']; ?>" href="#"><i class="far fa-eye"></i><span>Quick Shop</span></a>
                                    </div>
                                </div>
                            </div>
                            <div class="product-content">
                                <h3><a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>"><?php echo $row['product']; ?></a></h3>
                                <div class="product-rate">
                                    <i class="fas fa-star"></i>
                                    <i class="fas fa-star"></i>
                                    <i class="fas fa-star"></i>
                                    <i class="fas fa-star"></i>
                                    <i class="far fa-star"></i>
                                </div>
                                <div class="d-flex justify-content-between">
                                    <div class="product-price">
                                        <span class="old">K<?php echo $row['price']; ?></span>
                                        <span>K<?php echo $row['discount']; ?></span>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>

                <?php
                }
                ?>
            </div>
        </div>
    </div>
<?php
}
?>
<!-- Electronics -->
<div class="product-area section">
    <div class="container">
        <div class="row">
            <div class="col-12">
                <div class="section-title d-flex justify-content-between align-center">
                    <div class="d-flex section-title-left">
                        <i class="fas fa-laptop"></i>
                        <h2>Electronics</h2>
                    </div>
                    <div class="section-title-right">
                        <a href="products?category=Phones">View More <i class="far fa-long-arrow-right"></i></a>
                    </div>
                </div>
            </div>
        </div>
        <div class="product-slider owl-carousel owl-theme">
            <?php
            include './assets/php/connect.php';
            $query = "SELECT * FROM `products` WHERE `category`='Electronics' ORDER BY `pid` DESC LIMIT 8";
            $run = mysqli_query($conn, $query) or die(mysqli_error($conn));
            while ($row = mysqli_fetch_array($run)) {
            ?>
                <div class="item">
                    <div class="single-product">
                        <div class="product-img">
                            <a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>">
                                <img class="product-img" src="assets/products/<?php echo $row['image']; ?>" alt="#">
                            </a>
                            <div class="button-head">
                                <div class="product-action">
                                    <a data-bs-toggle="modal" data-bs-target="#shop-<?php echo $row['pid']; ?>" href="#"><i class="far fa-eye"></i><span>Quick Shop</span></a>
                                </div>
                            </div>
                        </div>
                        <div class="product-content">
                            <h3><a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>"><?php echo $row['product']; ?></a></h3>
                            <div class="product-rate">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="far fa-star"></i>
                            </div>
                            <div class="d-flex justify-content-between">
                                <div class="product-price">
                                    <span class="old">K<?php echo $row['price']; ?></span>
                                    <span>K<?php echo $row['discount']; ?></span>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>

            <?php
            }
            ?>
        </div>
    </div>
</div>

<!-- Cars -->
<div class="product-area section">
    <div class="container">
        <div class="row">
            <div class="col-12">
                <div class="section-title d-flex justify-content-between align-center">
                    <div class="d-flex section-title-left">
                        <i class="fa fa-car-alt"></i>
                        <h2>Cars</h2>
                    </div>
                    <div class="section-title-right">
                        <a href="products?category=Cars">View More <i class="far fa-long-arrow-right"></i></a>
                    </div>
                </div>
            </div>
        </div>
        <div class="product-slider owl-carousel owl-theme">
            <?php
            $query = "SELECT * FROM `products` WHERE `category`='Cars' ORDER BY `pid` DESC LIMIT 8";
            $run = mysqli_query($conn, $query) or die(mysqli_error($conn));
            while ($row = mysqli_fetch_array($run)) {
            ?>
                <!-- Item -->
                <div class="item">
                    <div class="single-product">
                        <div class="product-img">
                            <a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>">
                                <img class="product-img" src="assets/products/<?php echo $row['image']; ?>" alt="#">
                            </a>
                            <div class="button-head">
                                <div class="product-action">
                                    <a data-bs-toggle="modal" data-bs-target="#shop-<?php echo $row['pid']; ?>" href="#"><i class="far fa-eye"></i><span>Quick Shop</span></a>
                                </div>
                            </div>
                        </div>
                        <div class="product-content">
                            <h3><a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>"><?php echo $row['product']; ?></a></h3>
                            <div class="product-rate">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="far fa-star"></i>
                            </div>
                            <div class="d-flex justify-content-between">
                                <div class="product-price">
                                    <span>K<?php echo $row['price']; ?></span>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            <?php
            }
            ?>
        </div>
    </div>
</div>

<!-- Fashion -->
<div class="product-area section">
    <div class="container">
        <div class="row">
            <div class="col-12">
                <div class="section-title d-flex justify-content-between align-center">
                    <div class="d-flex section-title-left">
                        <i class="far fa-tshirt"></i>
                        <h2>Fashion & Boutique</h2>
                    </div>
                    <div class="section-title-right">
                        <a href="products?category=Fashion">View More <i class="far fa-long-arrow-right"></i></a>
                    </div>
                </div>
            </div>
        </div>
        <div class="product-slider owl-carousel owl-theme">
            <?php
            $query = "SELECT * FROM `products` WHERE `category`='Fashion & Boutique' ORDER BY `pid` DESC LIMIT 8";
            $run = mysqli_query($conn, $query) or die(mysqli_error($conn));
            while ($row = mysqli_fetch_array($run)) {
            ?>
                <div class="item">
                    <div class="single-product">
                        <div class="product-img">
                            <a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>">
                                <img class="product-img" src="assets/products/<?php echo $row['image']; ?>" alt="#">
                            </a>
                            <div class="button-head">
                                <div class="product-action">
                                    <a data-bs-toggle="modal" data-bs-target="#shop-<?php echo $row['pid']; ?>" href="#"><i class="far fa-eye"></i><span>Quick Shop</span></a>
                                </div>
                            </div>
                        </div>
                        <div class="product-content">
                            <h3><a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>"><?php echo $row['product']; ?></a></h3>
                            <div class="product-rate">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="far fa-star"></i>
                            </div>
                            <div class="d-flex justify-content-between">
                                <div class="product-price">
                                    <span>K<?php echo $row['price']; ?></span>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            <?php
            }
            ?>
        </div>
    </div>
</div>

<!-- Foods -->
<div class="product-area section">
    <div class="container">
        <div class="row">
            <div class="col-12">
                <div class="section-title d-flex justify-content-between align-center">
                    <div class="d-flex section-title-left">
                        <i class="far fa-hamburger"></i>
                        <h2>Foods</h2>
                    </div>
                    <div class="section-title-right">
                        <a href="products?category=Foods">View More <i class="far fa-long-arrow-right"></i></a>
                    </div>
                </div>
            </div>
        </div>
        <div class="product-slider owl-carousel owl-theme">
            <?php
            $query = "SELECT * FROM `products` WHERE `category`='Foods' ORDER BY `pid` DESC LIMIT 8";
            $run = mysqli_query($conn, $query) or die(mysqli_error($conn));
            while ($row = mysqli_fetch_array($run)) {
            ?>
                <div class="item">
                    <div class="single-product">
                        <div class="product-img">
                            <a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>">
                                <img class="product-img" src="assets/products/<?php echo $row['image']; ?>" alt="#">
                            </a>
                            <div class="button-head">
                                <div class="product-action">
                                    <a data-bs-toggle="modal" data-bs-target="#shop-<?php echo $row['pid']; ?>" href="#"><i class="far fa-eye"></i><span>Quick Shop</span></a>
                                </div>
                            </div>
                        </div>
                        <div class="product-content">
                            <h3><a href="product=<?php echo filter_file($row['pid'] . '-' . $row['product']); ?>"><?php echo $row['product']; ?></a></h3>
                            <div class="product-rate">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="far fa-star"></i>
                            </div>
                            <div class="d-flex justify-content-between">
                                <div class="product-price">
                                    <span>K<?php echo $row['price']; ?></span>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            <?php
            }
            ?>
        </div>
    </div>
</div>

<!-- Quick Shop For Electronics-->
<?php
$query = "SELECT * FROM `products` WHERE `category`='Electronics' ORDER BY `pid` DESC LIMIT 8";
$run = mysqli_query($conn, $query) or die(mysqli_error($conn));
while ($row = mysqli_fetch_array($run)) {
?>
    <div class="modal fade" id="shop-<?php echo $row['pid']; ?>" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="#shop-<?php echo $row['pid']; ?>" aria-hidden="true">
        <div class="modal-dialog modal-lg modal-dialog-centered" role="document">
            <div class="modal-content">
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                <div class="modal-body">
                    <div class="row">
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <img src="assets/products/<?php echo $row['image']; ?>" alt="#">
                        </div>
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <div class="quickview-content">
                                <h2><?php echo $row['product']; ?></h2>
                                <div class="d-flex mb-3">
                                    <span>Category:</span>
                                    <b><?php echo $row['category']; ?></b>
                                </div>
                                <div class="d-flex mb-3">
                                    <span>Rated:</span>
                                    <div class="quickview-ratting-review">
                                        <div class="quickview-ratting-wrap">
                                            <div class="quickview-ratting">
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fal fa-star"></i>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <h3>K<?php echo $row['discount']; ?></h3>
                                <div class="add-to-cart">
                                    <a href="tel:0997844055" class="btn"><i class="far fa-phone"></i></a>
                                    <a href="mailto:bm1holdingsltd247@gmail.com" class="btn"><i class="fa fa-envelope"></i></a>
                                    <a href="https://wa.me/265997844055?text=[bm1holdings-ltd.com].%20Hi%20I%20am%20interested%20in%20buying%20your%20product%20(<?php echo $row['product'] . ")%20at%20K" . $row['discount'] . ".Lets%20talk%20about%20it.%20Thank%20you."; ?>" class="btn"><i class="fab fa-whatsapp"></i></a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php
}
?>
<!-- Quick Shop For Cars-->
<?php
$query = "SELECT * FROM `products` WHERE `category`='Cars' ORDER BY `pid` DESC LIMIT 8";
$run = mysqli_query($conn, $query) or die(mysqli_error($conn));
while ($row = mysqli_fetch_array($run)) {
?>
    <div class="modal fade" id="shop-<?php echo $row['pid']; ?>" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="#shop-<?php echo $row['pid']; ?>" aria-hidden="true">
        <div class="modal-dialog modal-lg modal-dialog-centered" role="document">
            <div class="modal-content">
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                <div class="modal-body">
                    <div class="row">
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <img src="assets/products/<?php echo $row['image']; ?>" alt="#">
                        </div>
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <div class="quickview-content">
                                <h2><?php echo $row['product']; ?></h2>
                                <div class="d-flex mb-3">
                                    <span>Category:</span>
                                    <b><?php echo $row['category']; ?></b>
                                </div>
                                <div class="d-flex mb-3">
                                    <span>Rated:</span>
                                    <div class="quickview-ratting-review">
                                        <div class="quickview-ratting-wrap">
                                            <div class="quickview-ratting">
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fal fa-star"></i>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <h3>K<?php echo $row['discount']; ?></h3>
                                <div class="add-to-cart">
                                    <a href="tel:0997844055" class="btn"><i class="far fa-phone"></i></a>
                                    <a href="mailto:bm1holdingsltd247@gmail.com" class="btn"><i class="fa fa-envelope"></i></a>
                                    <a href="https://wa.me/265997844055?text=[bm1holdings-ltd.com].%20Hi%20I%20am%20interested%20in%20buying%20your%20product%20(<?php echo $row['product'] . ")%20at%20K" . $row['discount'] . ".Lets%20talk%20about%20it.%20Thank%20you."; ?>" class="btn"><i class="fab fa-whatsapp"></i></a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php
}
?>
<!-- Quick Shop For Fashion-->
<?php
$query = "SELECT * FROM `products` WHERE `category`='Fashion & Boutique' ORDER BY `pid` DESC LIMIT 8";
$run = mysqli_query($conn, $query) or die(mysqli_error($conn));
while ($row = mysqli_fetch_array($run)) {
?>
    <div class="modal fade" id="shop-<?php echo $row['pid']; ?>" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="#shop-<?php echo $row['pid']; ?>" aria-hidden="true">
        <div class="modal-dialog modal-lg modal-dialog-centered" role="document">
            <div class="modal-content">
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                <div class="modal-body">
                    <div class="row">
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <img src="assets/products/<?php echo $row['image']; ?>" alt="#">
                        </div>
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <div class="quickview-content">
                                <h2><?php echo $row['product']; ?></h2>
                                <div class="d-flex mb-3">
                                    <span>Category:</span>
                                    <b><?php echo $row['category']; ?></b>
                                </div>
                                <div class="d-flex mb-3">
                                    <span>Rated:</span>
                                    <div class="quickview-ratting-review">
                                        <div class="quickview-ratting-wrap">
                                            <div class="quickview-ratting">
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fal fa-star"></i>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <h3>K<?php echo $row['discount']; ?></h3>
                                <div class="add-to-cart">
                                    <a href="tel:0997844055" class="btn"><i class="far fa-phone"></i></a>
                                    <a href="mailto:bm1holdingsltd247@gmail.com" class="btn"><i class="fa fa-envelope"></i></a>
                                    <a href="https://wa.me/265997844055?text=[bm1holdings-ltd.com].%20Hi%20I%20am%20interested%20in%20buying%20your%20product%20(<?php echo $row['product'] . ")%20at%20K" . $row['discount'] . ".Lets%20talk%20about%20it.%20Thank%20you."; ?>" class="btn"><i class="fab fa-whatsapp"></i></a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php
}
?>
<!-- Quick Shop For Foods-->
<?php
$query = "SELECT * FROM `products` WHERE `category`='Foods' ORDER BY `pid` DESC LIMIT 8";
$run = mysqli_query($conn, $query) or die(mysqli_error($conn));
while ($row = mysqli_fetch_array($run)) {
?>
    <div class="modal fade" id="shop-<?php echo $row['pid']; ?>" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="#shop-<?php echo $row['pid']; ?>" aria-hidden="true">
        <div class="modal-dialog modal-lg modal-dialog-centered" role="document">
            <div class="modal-content">
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                <div class="modal-body">
                    <div class="row">
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <img src="assets/products/<?php echo $row['image']; ?>" alt="#">
                        </div>
                        <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
                            <div class="quickview-content">
                                <h2><?php echo $row['product']; ?></h2>
                                <div class="d-flex mb-3">
                                    <span>Category:</span>
                                    <b><?php echo $row['category']; ?></b>
                                </div>
                                <div class="d-flex mb-3">
                                    <span>Rated:</span>
                                    <div class="quickview-ratting-review">
                                        <div class="quickview-ratting-wrap">
                                            <div class="quickview-ratting">
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fa fa-star"></i>
                                                <i class="fal fa-star"></i>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <h3>K<?php echo $row['discount']; ?></h3>
                                <div class="add-to-cart">
                                    <a href="tel:0997844055" class="btn"><i class="far fa-phone"></i></a>
                                    <a href="mailto:bm1holdingsltd247@gmail.com" class="btn"><i class="fa fa-envelope"></i></a>
                                    <a href="https://wa.me/265997844055?text=[bm1holdings-ltd.com].%20Hi%20I%20am%20interested%20in%20buying%20your%20product%20(<?php echo $row['product'] . ")%20at%20K" . $row['discount'] . ".Lets%20talk%20about%20it.%20Thank%20you."; ?>" class="btn"><i class="fab fa-whatsapp"></i></a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php
}
?>
<?php
include './footer.php';
include './scripts.php';
?>
<script>
    document.querySelector("title").innerText = "BM 1 HOLDINGS LTD - HOME";
    document.querySelectorAll(".menu-area ul li")[0].classList.add("active");
    document.querySelectorAll(".slicknav_nav li a")[0].style.color = "blue";
</script>

Youez - 2016 - github.com/yon3zu
LinuXploit