warehouse-inventory-system icon indicating copy to clipboard operation
warehouse-inventory-system copied to clipboard

View Article Page

Open Emanuele20 opened this issue 6 years ago • 0 comments

Hi to all! i ve found today this beautiful script and customizing for my need. Any idea how create a view product page with image? i try to do but i cannot show image, i retrive all data... thx

best regards

``

msg("d","Missing product id."); redirect('product.php'); } ?>
     </strong>
    </div>
    <div class="panel-body">
   
     <div class="col-md-7">
   
  		<img src="uploads/products/<?php echo $product['image']; ?>" alt="product-image" class="img-circle img-inline">
        <br><hr>
     
       NAME:<?php echo remove_junk($product['name']);?><br>
       COD:<?php echo remove_junk($product['code']);?><br>
       Q.TY<?php echo remove_junk($product['quantity']); ?><br>
       ACQ<?php echo remove_junk($product['buy_price']);?><br>
       EBAY<?php echo remove_junk($product['sale_price']);?><br>
       DATA_ENTRY<?php echo read_date($product['date']); ?>
                  
  </div>

Emanuele20 avatar Mar 12 '18 14:03 Emanuele20