HEX
Server: Apache
System: Linux 185.122.168.184.host.secureserver.net 5.14.0-570.52.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 15 06:39:08 EDT 2025 x86_64
User: barbeatleanalyti (1024)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/barbeatleanalyti/public_html/m.beatleanalytics.com/application/views/customer/order.php
<?php 
	include ('include/header.php');
	
	include ('include/search.php');
	
	//print_r($order_data);
?>

<!-------product------->
<div class="container offers point">
  <div class="">
  <div class="my-offers">
        <h3>My Orders</h3>
   </div>
 
 <!------
 <div class="orders">
   
    <div class="table-responsive">          
  <table class="table">
    <thead>
      <tr class="hed">
        <th>Order ID</th>
        <th>Product Name</th>
        <th>Image</th>
        <th>Quantity</th>
        <th>Status</th>
        
      </tr>
    </thead>
    <tbody class="data-scr">
      <tr>
        <td>3505</td>
        <td>abc</td>
        <td><img src="<?php echo base_url();?>assets/customer/img/product-01.jpg"></td>
        <td>1</td>
         <td>-</td>
        
      </tr>
      
      <tr>
        <td>5456</td>
        <td>abc</td>
         <td><img src="<?php echo base_url();?>assets/customer/img/product-01.jpg"></td>
        <td>1</td>
        <td>-</td>
        
      </tr>
      
      
      
      <tr>
        <td>1</td>
        <td>abc</td>
        <td><img src="<?php echo base_url();?>assets/customer/img/product-01.jpg"></td>
        <td>3</td>
        <td>-</td>
        
      </tr>
      
      
      <tr>
        <td>6544</td>
        <td>abc</td>
         <td><img src="<?php echo base_url();?>assets/customer/img/product-01.jpg"></td>
        <td>5</td>
       <td>-</td>
        
      </tr>
      
       
      <tr>
        <td>6565</td>
        <td>abc</td>
        <td><img src="<?php echo base_url();?>assets/customer/img/product-01.jpg"></td>
        <td>1</td>
        
        <td>-</td>
        
      </tr>
      
       
      <tr>
        <td>1</td>
        <td>abc</td>
        <td><img src="<?php echo base_url();?>assets/customer/img/product-01.jpg"></td>
        <td>1</td>
        <td>-</td>
        
      </tr>
      
     
    </tbody>
  </table>
  </div>
 
 
 </div>-------------->
  
    
    
    <div class=" co-listing">
    
   <div class="row">
        <div class="pro-pic">
            <div class="panel panel-default">
                
                 <?php
				 if(count($order_data) > 0) {
				 for($i=0; $i<count($order_data); $i++) {
                 ?>
                 <ul class="list-group" id="contact-list">
                    <li class="list-group-item">
                        
                        <div class=" company-info right-said">
                        <!--   <p> <span class="name">Beatle Analytics</span></p>--->
                            
                            <p>
                            <span  title="5842 ">Order ID: &nbsp;
                            </span>
                                <span class="co-info"> <span class="text-muted"> <?php echo $order_data[$i]->orderuid?> </span></span></p>
                            
                           <p> <span  title="Product Name">Product Name: &nbsp;</span>
                             <span class="co-info"> <span class="text-muted"> <?php echo $order_data[$i]->productname?></span></span></p>
                             
                            <p><span title="Quantity">Quantity: &nbsp;</span>
                            <span class="co-info"> <span class="text-muted">1</span><br></span></p>
                            
                            <p><span title="Quantity">Status: &nbsp;</span>
                            <span class="co-info"> <span class="text-muted"> <b><?php echo $order_data[$i]->status?></b></span><br></span></p>
                            
                            <p><span title="Quantity">Order Date: &nbsp;</span>
                            <span class="co-info"> <span class="text-muted"> <?php echo date("d/m/Y",strtotime($order_data[$i]->created_date))?></span><br></span></p>
                        </div>
                        <div class=" company logos left-said">
                       
                            <a class="example-image-link" href="<?php echo base_url();?>/assets/products/<?php echo $order_data[$i]->prod_image; ?>"
                               data-lightbox="example-1"><img class="example-image" 
                                src="<?php echo base_url();?>/assets/products/<?php echo $order_data[$i]->prod_image; ?>" alt="<?php echo $order_data[$i]->prod_image; ?>" /></a>
                        </div>
                        <div class="clearfix"></div>
                    </li>
				 </ul>
                 <?php } } else{ ?>
                 	<div class="row">
                    	<div class="col-md-12 text-center">
                    	No any order found
                        </div>
                    </div>
					
				<?php } ?>
            </div>
        </div>
	</div>
    
    
    
    
</div>
    
    
 </div>
</div>





<br><br><br>

<style>


</style>

<!-------product------->


<script>
	$(window).load(function(){
		loadingFade();
	});
	
</script>


<?php 
	include ('include/footer.php');
?>