����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 3.133.149.244 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'; include './navbar.php'; if (isset($_GET['competition'])) { if (!empty($_GET['competition'])) { $competition = str_replace('-', ' ', $_GET['competition']); } } ?> <header class="page-header" data-background="img/blog.jpg"> <div class="container"> <h2 style="text-transform:capitalize;">Events</h2> <div class="bosluk3"></div> <p><a href="home">Home</a> <i class="flaticon-right-chevron"></i> Events </p> </div> <!-- end container --> </header> <main> <!--Recent Posts 1--> <section class="news-alani-sayfa"> <div class="tablohizmetler"> <?php $query = "SELECT * FROM `events` ORDER BY `eid` DESC"; $run = mysqli_query($conn, $query) or die(mysqli_error($conn)); while ($row = mysqli_fetch_array($run)) { ?> <div class="tablo--1-ve-3" data-tilt> <div class="post-kutu" onclick="location.href='event-detail.php?eid=<?php echo $row['eid']; ?>';" style="cursor:pointer;"> <img src="./events/<?php echo $row['image']; ?>" alt="Haber 1" class="haber-gorsel"> <div class="datesection"><span class="date"><?php echo date('d.M.Y', $row['time']); ?></span> <span class="tt">-</span> <span class="category"><?php echo $row['category']; ?></span></div> <h3 class="baslik-3 h-yazi-margin-kucuk"><?php echo $row['title']; ?></h3> <p class="post-kutu--yazi"><?php echo $row['details']; ?></p> <div class="h-yazi-ortalama h-yazi-margin-50"> <a href="event-detail.php?eid=<?php echo $row['eid']; ?>" class="custom-button">More</a> </div> </div> </div> <?php } ?> </div> <div class="blogcount"> <p class="countb"> 1</p> <p class="countb"><a href="blog-page-2.html">2</a></p> <p class="countb"><a href="blog-page-2.html">»</a></p> </div> </section> <?php include './footer.php'; ?> <script> document.querySelector("title").innerText = "SMC - Events"; document.querySelectorAll("ul.menueffect li a")[4].style.color = "yellow"; var count = document.querySelectorAll("p.post-kutu--yazi").length; for (var i = 0; i < count; i++) { var title = document.querySelectorAll("p.post-kutu--yazi")[i].innerText; var slicer = title.slice(0, 85); if (title.length >= 85) { document.querySelectorAll("p.post-kutu--yazi")[i].innerHTML = slicer + '...'; } else { document.querySelectorAll("p.post-kutu--yazi")[i].innerHTML = slicer; } } </script>