Server IP : 103.53.40.154 / Your IP : 3.147.205.19 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/kediapaper.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $sql_index_gal = db_query("SELECT * FROM tbl_category WHERE category_for_gallery='Yes' AND category_status='Active' ORDER BY category_order_by ASC"); if (mysqli_num_rows($sql_index_gal) > 0) { ?> <div class="gallery-container"> <div class="row"> <div class="col-md-12"> <section> <h2 class="gallery-title"><?php echo ($compDATA['admin_product_option'] == 'Yes') ? 'Products' : 'Services'; ?> Gallery</h2> </section> </div> </div> <div class="slider-wrapper"> <div id="main-slider" class="flexslider carousel"> <ul class="slides"> <?php while ($INDEXGAL_DATA = mysqli_fetch_array($sql_index_gal)) { @extract($INDEXGAL_DATA); ?> <li> <a href="<?=$site_url?>/<?=$INDEXGAL_DATA['category_url']?>.html" class="portfolio-img-link"> <img src="<?=$site_url?>/uploaded_files/<?=$INDEXGAL_DATA['category_image_name']?>" alt="<?php echo ($INDEXGAL_DATA['category_is_product'] == 'Yes') ? 'Manufacturers Exporters and Wholesale Suppliers of '.$INDEXGAL_DATA['category_name'].' '.$compDATA['admin_city'].' '.$compDATA['admin_state'] : 'Service Provider of '.$INDEXGAL_DATA['category_name'].' '.$compDATA['admin_city'].' '.$compDATA['admin_state']; ?>" title="<?php echo ($INDEXGAL_DATA['category_is_product'] == 'Yes') ? 'Manufacturers Exporters and Wholesale Suppliers of '.$INDEXGAL_DATA['category_name'].' '.$compDATA['admin_city'].' '.$compDATA['admin_state'] : 'Service Provider of '.$INDEXGAL_DATA['category_name'].' '.$compDATA['admin_city'].' '.$compDATA['admin_state']; ?>" /> </a> </li> <?php } ?> </ul> </div> </div> </div> <?php } ?>