| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/hkosl.com/innoutstorage_bk20210521/en/ |
Upload File : |
<?php
require_once ('../webadmin/basic_info.php');
$product_info = get_product();
?>
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<?php require_once ("html_head.php") ?>
</head>
<body class="stretched no-transition">
<?php require_once ("google_analysis.php"); ?>
<!-- Document Wrapper
============================================= -->
<div id="wrapper" class="clearfix">
<!-- Header
============================================= -->
<?php require_once ("html_header.php") ?>
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap">
<div class="container clearfix">
<div class="col-md-9 bottommargin" >
<div class="heading-block center">
<h1>Packing Materials</h1>
<span></span>
</div>
<div class="table-responsive bottommargin">
<table class="table cart" id="packing_materials_table">
<thead>
<tr class="bgcolorg">
<th class="cart-product-image col-md-4 font">Image</th>
<th class="cart-product-name col-md-3 font">Product Name</th>
<th class="cart-product-desc col-md-3 font">Description</th>
<th class="cart-product-price col-md-2 font">Price</th>
</tr>
</thead>
<tbody>
<?php
foreach($product_info as $product){
$product_img = get_product_images($product["id"]);
if(!empty($product_img)){
$this_img = '<img src="../images/product_images/thumb/'.$product_img[0]["photo"].'">';
}else{
$this_img = "";
}
echo '<tr class="cart_item">
<td class="cart-product-image">
'.$this_img.'
</td>
<td class="cart-product-name" style="vertical-align: top !important;">
'.$product["name_".$langcode].'
</td>
<td class="cart-product-desc" style="vertical-align: top !important;">
<div class="editor_content">
'.htmlspecialchars_decode($product["desc_".$langcode]).'
</div>
</td>
<td class="cart-product-price" style="vertical-align: top !important;">
$'.numberformat($product["price"]).'
</td>
</tr>';
}
?>
</tbody>
</table>
</div>
</div>
<div class="col-md-3 center">
</div>
</div>
</div>
</section><!-- #content end -->
<!-- Footer
============================================= -->
<?php require_once ("html_footer.php"); ?>
</div><!-- #wrapper end -->
<!-- Go To Top
============================================= -->
<div id="gotoTop" class="icon-angle-up"></div>
<!-- Footer Scripts
============================================= -->
<script type="text/javascript" src="../js/functions.js"></script>
</body>
</html>