Server: | Microsoft-IIS/10.0 |
System: | Windows NT BH-PLESK-WEB3 10.0 build 20348 (Windows Server 2022) AMD64 |
User: | IWPD_8556(lensai) ( 0 ) |
PHP Version: | 8.3.21 |
Python Version: | Python is not available |
Disabled Functions: | , Cron, Curl, Ftp, GCC, Mail, Mysql, PKEXEC, Perl, Python, SendMail, Ssh, Wget, exec, passthru, shell_exec, system |
<?php include_once 'header.php'; $category=$_GET['category']; ?> <div class="banner"> <div align="right" class="right"> <a href="producticon.php">Product</a> / <?php echo $category; ?> </div> <!--<div class="wrap"> <h2><?php echo $category; ?></h2><div class="clear"></div> </div>--> </div> <div class="main"> <div class="container"> <div class="clear"></div> <div id="portfoliolist"> <div class="wrapper"> <div class="container"> <div class="row"> <div class="col-lg-11 col-md-5 col-sm-8 col-xs-9 bhoechie-tab-container" style=" margin-bottom: 35px;"> <div class="col-lg-3 col-md-3 col-sm-3 col-xs-3 bhoechie-tab-menu"> <div class="list-group"> <?php $product = "SELECT * FROM product where `category`='$category'"; $result = mysqli_query($con, $product); $i=1; while($row=mysqli_fetch_array($result)) { $class = ($i==1)?"active":""; ?> <a href="#" class="list-group-item <?php echo $class;?> text-center"> <?php echo $row['title'] ; ?> </a> <?php $i++;} ?> </div> </div> <div class="col-lg-9 col-md-9 col-sm-9 col-xs-9 bhoechie-tab" style="padding-bottom:10px"> <!-- flight section --> <?php $product = "SELECT * FROM product where `category`='$category'"; $result = mysqli_query($con, $product); $i=1; while($row=mysqli_fetch_array($result)) { $class = ($i==1)?"active":""; ?> <div class="bhoechie-tab-content <?php echo $class?>"> <h2 style="text-align: center;padding-bottom: 10px;font-size: 20px;border-bottom: 1px solid #80808061; margin-bottom: 20px;">Features</h2> <div class="col-lg-8"> <h2 style=" text-align: center; background: #d72948; padding: 5px; color: white; font-size: 16px; margin-bottom: 15px;"> <?php echo $row['title'] ; ?></h2> <p style="font-size:14px"><?php echo $row['feature1'] ; ?></p> <p style="font-size:14px"><?php echo $row['feature2'] ; ?></p> <p style="font-size:14px"><?php echo $row['feature3'] ; ?></p> <p style="font-size:14px"><?php echo $row['feature4'] ; ?></p> <p style="font-size:14px"><?php echo $row['feature5'] ; ?></p> </div> <div class="col-lg-4"> <?php $image = "SELECT * FROM product_attach where `category`='".$row['title']."'"; $r_image = mysqli_query($con, $image); $row_image=mysqli_fetch_array($r_image); ?> <img src="images/products_by_speciality/<?php echo $row_image['img']?>" /> </div> <br /> <br /> <h2 style="text-align: center;padding-bottom: 10px;font-size: 20px;border-bottom: 1px solid #80808061; margin-bottom: 20px;clear:both">Specification</h2> <label style="width:100%"> <strong style="font-weight: bold;font-size: 14px;width: 141px;float: left;">Side Port </strong> : <?php echo $row['side_port'] ; ?> </label> <label style="width:100%"> <strong style="font-weight: bold;font-size: 14px;width: 141px;float: left;">Keratome </strong> : <?php echo $row['keratome'] ; ?> <br /> <p style="font-weight: normal;font-size: 12px;">Single & Double Bevel</p> </label> <label style="width:100%"> <strong style="font-weight: bold;font-size: 14px;width: 141px;float: left;">Clear Cornea </strong> : <?php echo $row['clear_cornea'] ; ?> <br /> <p style="font-weight: normal;font-size: 12px;">Single & Double Bevel</p> </label> <label style="width:100%"> <strong style="font-weight: bold;font-size: 14px;width: 141px;float: left;">Crescent Bevel Up </strong> : <?php echo $row['bevel_up'] ; ?> </label> <label style="width:100%"> <strong style="font-weight: bold;font-size: 14px;width: 141px;float: left;">MVR </strong> : <?php echo $row['mvr'] ; ?> </label> <label style="width:100%"> <strong style="font-weight: bold;font-size: 14px;width: 141px;float: left;">Implant </strong> : <?php echo $row['implant'] ; ?> </label> <br /> <br /> <?php $broucher = "SELECT * FROM brochures where `product_id`='".$row['id']."'"; $r_b = mysqli_query($con, $broucher); if(mysqli_num_rows($r_b)>0) { $k=1; echo '<div class="tooltip-col text-center">Broucher <span class="tooltiptext">'; while($row_b=mysqli_fetch_array($r_b)){ echo '<a href="images/brochures/'.$row_b['img'].'" target="_blank" style="color:white">Broucher '.$k.'</a><br />'; $k++; } echo '</span></div>'; } $video = "SELECT * FROM video where `product_id`='".$row['id']."'"; $r_v = mysqli_query($con, $video); if(mysqli_num_rows($r_v)>0) { $k=1; echo '<div class="tooltip-col text-center">Video <span class="tooltiptext">'; while($row_v=mysqli_fetch_array($r_v)){ echo '<a href="'.$row_v['link'].'" target="_blank" style="color:white">Video '.$k.'</a><br />'; $k++; } echo '</span></div>'; } ?> </div> <?php $i++;} ?> </div> </div> </div> </div> <style> /* bhoechie tab */ div.bhoechie-tab-container{ z-index: 10; background-color: #ffffff; padding: 0 !important; border-radius: 4px; -moz-border-radius: 4px; border:1px solid #ddd; margin-top: 20px; margin-left: 50px; -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); box-shadow: 0 6px 12px rgba(0,0,0,.175); -moz-box-shadow: 0 6px 12px rgba(0,0,0,.175); background-clip: padding-box; opacity: 0.97; filter: alpha(opacity=97); } div.bhoechie-tab-menu{ padding-right: 0; padding-left: 0; padding-bottom: 0; } div.bhoechie-tab-menu div.list-group{ margin-bottom: 0; } div.bhoechie-tab-menu div.list-group>a{ margin-bottom: 0; } div.bhoechie-tab-menu div.list-group>a .glyphicon, div.bhoechie-tab-menu div.list-group>a .fa { color: #5A55A3; } div.bhoechie-tab-menu div.list-group>a:first-child{ border-top-right-radius: 0; -moz-border-top-right-radius: 0; } div.bhoechie-tab-menu div.list-group>a:last-child{ border-bottom-right-radius: 0; -moz-border-bottom-right-radius: 0; } div.bhoechie-tab-menu div.list-group>a.active, div.bhoechie-tab-menu div.list-group>a.active .glyphicon, div.bhoechie-tab-menu div.list-group>a.active .fa{ background-color: #d62242; background-image: #5A55A3; color: #ffffff; } div.bhoechie-tab-menu div.list-group>a.active:after{ content: ''; position: absolute; left: 100%; top: 50%; margin-top: -13px; border-left: 0; border-bottom: 13px solid transparent; border-top: 13px solid transparent; border-left: 10px solid #d62242; } div.bhoechie-tab-content{ background-color: #ffffff; /* border: 1px solid #eeeeee; */ padding-left: 20px; padding-top: 10px; } div.bhoechie-tab div.bhoechie-tab-content:not(.active){ display: none; } div.bhoechie-tab-menu a.list-group-item.active, div.bhoechie-tab-menu a.list-group-item.active:hover, div.bhoechie-tab-menu a.list-group-item.active:focus { z-index: 2; color: #fff; background-color: #d62242; border-color: #d62242 !Important; } .bhoechie-tab-menu .list-group a{font-size:14px} .tooltip-col { position: relative; display: inline-block; cursor:pointer; text-align:center; padding: 10px 20px; text-decoration: none; border-bottom: none; background: #d72948; border-radius: 5px; color: white; margin-right: 30px; } .tooltiptext { visibility: hidden; width: 150px; height:50px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 10px; box-sizing: border-box; position: absolute; z-index: 1; top: -13px; left: 110%; } .tooltiptext::after { content: ""; position: absolute; top: 50%; right: 100%; margin-top: -10px; border-width: 10px; border-style: solid; border-color: transparent black transparent transparent; } .tooltip-col:hover .tooltiptext { visibility: visible; } .tooltiptext2 { visibility: hidden; width: 150px; height:auto; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 10px; box-sizing: border-box; position: absolute; z-index: 1; top: -13px; right: 120px; } .tooltiptext2::after { content: ""; position: absolute; top: 50%; right: -20px; margin-top: -10px; border-width: 10px; border-style: solid; border-color: transparent transparent transparent black; } .tooltip-col:hover .tooltiptext2 { visibility: visible; } </style> </div> <div class="clear"> </div> </div> </div> </div> <?php include_once 'footer.php'; ?> <script> $(document).ready(function() { $("div.bhoechie-tab-menu>div.list-group>a").click(function(e) { e.preventDefault(); $(this).siblings('a.active').removeClass("active"); $(this).addClass("active"); var index = $(this).index(); $("div.bhoechie-tab>div.bhoechie-tab-content").removeClass("active"); $("div.bhoechie-tab>div.bhoechie-tab-content").eq(index).addClass("active"); }); }); $(".list-group-item").click(function() { $('html,body').animate({ scrollTop: $(".bhoechie-tab-content.active").offset().top}, 'slow'); }); </script>
Name | Size | Type | Permissions | Options |
---|---|---|---|---|
admin | DIR | Directory | drwxrwxrwx | |
B | DIR | Directory | drwxrwxrwx | |
brochuresfile | DIR | Directory | drwxrwxrwx | |
clamdscan12_10_2017 | DIR | Directory | drwxrwxrwx | |
css | DIR | Directory | drwxrwxrwx | |
fonts | DIR | Directory | drwxrwxrwx | |
images | DIR | Directory | drwxrwxrwx | |
js | DIR | Directory | drwxrwxrwx | |
s | DIR | Directory | drwxrwxrwx | |
.htaccess | 0.118 KB | File | -rw-rw-rw- | |
active.js | 0.514 KB | File | -rw-rw-rw- | |
admin.php | 0.043 KB | File | -rw-rw-rw- | |
blog.php | 3.993 KB | File | -rw-rw-rw- | |
blogs.php | 3.755 KB | File | -rw-rw-rw- | |
brochures.php | 1.764 KB | File | -rw-rw-rw- | |
brochures1.php | 7.628 KB | File | -rw-rw-rw- | |
clamdscanReport10_4_2017.log | 0.325 KB | File | -rw-rw-rw- | |
clamdscanReport12_10_2017.log | 0.325 KB | File | -rw-rw-rw- | |
clamdscanReport12_5_2017.log | 0.325 KB | File | -rw-rw-rw- | |
clamdscanReport12_6_2017.log | 0.325 KB | File | -rw-rw-rw- | |
clamdscanReport12_7_2017.log | 0.327 KB | File | -rw-rw-rw- | |
clamdscanReport12_8_2017.log | 0.325 KB | File | -rw-rw-rw- | |
clamdscanReport12_9_2017.log | 0.325 KB | File | -rw-rw-rw- | |
clamdscanReport15_3_2017.log | 0.325 KB | File | -rw-rw-rw- | |
clamdscanReport25_4_2017.log | 0.325 KB | File | -rw-rw-rw- | |
contact.php | 3.646 KB | File | -rw-rw-rw- | |
controller.php | 2.763 KB | File | -rw-rw-rw- | |
counter.txt | 0.003 KB | File | -rw-rw-rw- | |
demo.php | 19.660 KB | File | -rw-rw-rw- | |
error_log | 266.786 KB | File | -rw-rw-rw- | |
footer.php | 4.770 KB | File | -rw-rw-rw- | |
header.php | 5.879 KB | File | -rw-rw-rw- | |
header1.php | 5.216 KB | File | -rw-rw-rw- | |
img.php | 6.316 KB | File | -rw-rw-rw- | |
index.php | 4.650 KB | File | -rw-rw-rw- | |
login.php | 0.582 KB | File | -rw-rw-rw- | |
mail.php | 1.813 KB | File | -rw-rw-rw- | |
paper.php | 2.691 KB | File | -rw-rw-rw- | |
product.php | 10.401 KB | File | -rw-rw-rw- | |
product1.php | 13.077 KB | File | -rw-rw-rw- | |
product_s.php | 13.210 KB | File | -rw-rw-rw- | |
producticon.php | 5.646 KB | File | -rw-rw-rw- | |
project - Copy.php | 1.305 KB | File | -rw-rw-rw- | |
project.php | 2.915 KB | File | -rw-rw-rw- | |
project1.php | 1.020 KB | File | -rw-rw-rw- | |
temp.php | 2.407 KB | File | -rw-rw-rw- | |
test.html | 0.006 KB | File | -rw-rw-rw- | |
video.php | 3.145 KB | File | -rw-rw-rw- | |
web.config | 1.730 KB | File | -rw-rw-rw- |