?
Path : /home/enviro777/public_html/ |
Current File : /home/enviro777/public_html/products.php |
<?php include("connection.php"); $catid = $_GET['url']; $tt = mysqli_query($link,"select * from category where catUrl='$catid'"); $row3 =mysqli_fetch_object($tt); $pagetitle = $row3->title; $metades = $row3->details; $metakey = $row3->metakeyword; include ("includes/header.php"); function slug($string) { $slug = str_replace(' ','-',trim($string)); return $slug; } ?> <div class="about-section"> <?php include("connection.php"); $catid = $_GET['url']; //$Lname = $_GET['Lname']; $query=mysqli_query($link,"select * from product where proUrl='$catid' and proStatus ='1'"); $query1=mysqli_query($link,"select catName from category where catUrl='$catid'"); $row1 =mysqli_fetch_object($query1); ?> <div class="container"> <h3><?php echo $row1->catName?></h3> <br /> <br /> <?php $g=2; while($row=mysqli_fetch_object($query)) { $pname = $row->proName; ?> <!--<img src="images/p1.jpg" class="img-responsive" alt="/">--> <h1><strong><?=$row->proName?></strong></h1> <div class="clearfix"></div> <div class="row"> <div class="col-md-3 enviroimgalgn"> <a href="admin/produt_thum/<?=$row->proThum?>"><img src="admin/product_images/<?=$row->proImage?>" alt="enviro tech industrial product" width="250" height="190" title="enviro tech industrial product"/></a> <!--<img src="images/fine-filter.jpg" alt="fine-filter"/>--> </div> <div class="col-md-9 envirolist1"> <div style="max-height: 100px; overflow: hidden;"> <?=$row->details?></div><br /> <a href="product-details.php?url=<?=$row->productId;?>" class="intBtn">Read More</a> </div> </div> <?php $g++; ?> <?php } ?> <div class="clearfix"></div> </div> </div> </div> <!--about--> <!--why-choose--> <!--why-choose--> <!--advantage--> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-59a6b13ca8ecb7fc"></script> <?php include ("includes/footer.php"); ?>