ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/subamangala/admin/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/subamangala/admin/profiles-images.php |
<?php include "header.php"; $today_date = date("Y-m-d"); ?> <?php $statement = $pdo->prepare("SELECT * FROM `upload_img` where profile_id='".$_GET['id']."'"); $statement->execute(); $image_result = $statement->fetchAll(PDO::FETCH_ASSOC); $total_image= $statement->rowCount(); ?> <div class="content-wrapper" style="background: #b5dcdd;"> <section class="content-header"> <div class="container"> <!-- Dashboard Counts Starts Here --> <div class="container"> <div class="row"> <center style="font-weight: bolder;font-size: 25px;color: brown;">Profile Images</center> <?php if($total_image>0){ ?> <?php foreach($image_result as $data){ ?> <div class="col-md-4"> <img src="<?=$data['img']?>" style="width: 100%;height: 250px;border-radius: 10px;box-shadow: 5px 5px 5px 5px;"> </div> <?php } } else{ ?> <div class="col-md-12"> <center style="color:red;">No Data Found</center> </div> <?php } ?> </div> </div> <!-- Dashboard Counts Endsss Here --> </div> </section> <br><br><br><br> </div> <?php include "footer.php"; ?> <style> .demo{ background-color: #EBE8EE; } .counter{ font-family: 'Nunito Sans', sans-serif; text-align: center; height: 210px; width: 210px; padding: 7px 4px 0; margin: 0 auto; position: relative; z-index: 1; } .counter:before{ content: ''; background-color: #fff; height: 157px; width: 157px; border-radius: 15px; border: 5px solid #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset; transform: translateX(-50%) translateY(-50%) rotate(45deg); position: absolute; left: 50%; top: 50%; z-index: -1; } .counter .counter-icon{ color: #fff; background: linear-gradient(#F83F83,#E2056F); line-height: 70px; font-size: 35px; height: 70px; width: 70px; margin: 0 auto 8px; border-radius: 19px 0 50px; transform: rotate(45deg); } .counter .counter-icon i{ transform: rotate(-45deg); } .counter .counter-value{ font-size: 25px; font-weight: 700; letter-spacing: 1px; margin: 0 0 13px 0; display: block; } .counter h3{ color: #fff; background: linear-gradient(#F83F83,#E2056F); font-size: 18px; font-weight: 600; letter-spacing: 1px; text-transform: capitalize; padding: 10px 5px; margin: 0; border-radius: 0 0 20px 20px; position: relative; } .counter h3:before, .counter h3:after{ content: ""; background: linear-gradient(to right bottom, transparent 49%,#c90460 50%); width: 20px; height: 20px; position: absolute; top: -20px; left: 0; z-index: -2; } .counter h3:after{ transform: rotateY(180deg); left: auto; right: 0; } .counter.purple .counter-icon, .counter.purple h3{ background: linear-gradient(#B05FDF,#7B26DD); } .counter.purple h3:before, .counter.purple h3:after{ background: linear-gradient(to right bottom,transparent 49%,#5a07bf 50%); } .counter.blue .counter-icon, .counter.blue h3{ background: linear-gradient(#00BCF9,#027AF6); } .counter.blue h3:before, .counter.blue h3:after{ background: linear-gradient(to right bottom,transparent 49%,#0466c9 50%); } .counter.green .counter-icon, .counter.green h3{ background: linear-gradient(#aff400,#6cc425); } .counter.green h3:before, .counter.green h3:after{ background: linear-gradient(to right bottom,transparent 49%,#489e03 50%); } @media screen and (max-width:990px){ .counter{ margin-bottom: 40px; } } </style> <style> .counter_1{ color: #f27f21; font-family: 'Open Sans', sans-serif; text-align: center; height: 190px; width: 190px; padding: 30px 25px 25px; margin: 0 auto; border: 3px solid #f27f21; border-radius: 20px 20px; position: relative; z-index: 1; } .counter_1:before, .counter_1:after{ content: ""; background: #f3f3f3; border-radius: 20px; box-shadow: 4px 4px 2px rgba(0,0,0,0.2); position: absolute; left: 15px; top: 15px; bottom: 15px; right: 15px; z-index: -1; } .counter_1:after{ background: transparent; width: 100px; height: 100px; border: 15px solid #f27f21; border-top: none; border-right: none; border-radius: 0 0 0 20px; box-shadow: none; top: auto; left: -10px; bottom: -10px; right: auto; } .counter_1 .counter-icon_1{ font-size: 35px; line-height: 35px; margin: 0 0 15px; transition: all 0.3s ease 0s; } .counter_1:hover .counter-icon_1{ transform: rotateY(360deg); } .counter_1 .counter-value_1{ color: #555; font-size: 30px; font-weight: 600; line-height: 20px; margin: 0 0 20px; display: block; transition: all 0.3s ease 0s; } .counter_1:hover .counter-value_1{ text-shadow: 2px 2px 0 #d1d8e0; } .counter_1 h3{ font-size: 17px; font-weight: 700; text-transform: uppercase; margin: 0 0 15px; } .blue{ color: #4accdb; border-color: #4accdb; } .blue:after{ border-bottom-color: #4accdb; border-left-color: #4accdb; } .pink { color: #EE436D; border-color: #EE436D; } .pink:after { color: #EE436D; border-color: #EE436D; } .purple { color: #9C52A1; border-color: #9C52A1; } .purple:after{ color: #9C52A1; border-color: #9C52A1; } @media screen and (max-width:990px){ .counter_1{ margin-bottom: 40px; } } </style> <script> $(document).ready(function(){ $('.counter-value_1').each(function(){ $(this).prop('Counter',0).animate({ Counter: $(this).text() },{ duration: 3500, easing: 'swing', step: function (now){ $(this).text(Math.ceil(now)); } }); }); }); </script>