Server IP : 103.53.40.154 / Your IP : 3.145.180.152 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/brmarketingindia.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include("site-header.php");?> <!-- CONTENT --> <!-- Intro Section --> <?php include("site-header-flash-inner.php");?> <!-- Intro Section --> <!-- Service Section --> <div id="services-section" class="pt-80 pt-xs-60"> <div class="container"> <div class="row"> <div class="col-sm-12"> <div class="col-sm-6 " style="margin-bottom:35px;padding-left:100px"> <h4 class="mb-30">General Links</h4> <ul class="link blog-link" style="list-style:none; margin:0; padding:0;"> <?php $link_sql=db_query("select * from tbl_site_pages where 1 and site_pages_status='Active' order by site_pages_order_by asc"); if(mysqli_num_rows($link_sql)>0){ while($link_data=mysqli_fetch_array($link_sql)){ ?> <li><a href="<?=$site_url?>/<?=$link_data['site_pages_link']?>.html" class="text-black"><i class="fa fa-angle-double-right"></i> <?=$link_data['site_pages_name']?></a></li> <?php } } ?> </ul> </div> <?php $sql_cat=db_query("select * from tbl_category where 1 and category_parent_id='0' and category_status='Active' order by category_order_by asc"); if(mysqli_num_rows($sql_cat)>0){ ?> <div class="col-sm-6" style="margin-bottom:35px;"> <h4 class="mb-30">Our Products</h4> <?php function get_menu($query){ $site_url=db_scalar("select admin_website_url from tbl_admin where 1"); while($recds = mysqli_fetch_array($query)){ $menu_cat_id = $recds['category_id']; $menu_cat_name = $recds['category_name']; $menu_cat_link = $recds ['category_url']; if ($recds['category_parent_id']==0) { $brd=''; }else{ $brd=''; } echo "<li> <a href='$site_url/{$menu_cat_link}.html' class='text-black'><i class='fa fa-angle-double-right mr-10'> </i>{$menu_cat_name}</a>"; if(has_child(query($menu_cat_id))){ echo "<ul style='list-style:none;' >"; get_menu(query($menu_cat_id)); echo "</ul>"; } echo "</li>"; } } ?> <ul class="" style="list-style:none;"> <?php get_menu(query(0)); ?> </ul> <? } ?> </div> </div> </div> </div> </div> <!-- Service Section end --> <?php include("site-footer.php");?>