����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 3.15.198.120 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/learn.skilltainment.org/ |
Upload File : |
<?php include './sidebar.php'; include './navbar.php'; ?> <div class="container-fluid pt-2 px-4"> <div class="row g-2 workshop"> <?php if ($user_type == 1) { ?> <div class="col-12 d-flex justify-content-end"> <a href="new-workshop.php" class="bg-primary btn text-white"><i class="fa fa-plus"></i> New Workshop</a> </div> <?php } ?> <?php $query = "SELECT * FROM `workshops` ORDER BY `wid` ASC"; $run = mysqli_query($conn, $query) or die(mysqli_error($conn)); while ($row = mysqli_fetch_array($run)) { ?> <div class="col-md-6"> <div class="bg-secondary rounded h-100 shadow-3" data-aos="flip-left" data-aos-duration="500"> <a href="workshop=<?php echo filter_file(strtolower($row['title'])); ?>"> <div class="zoom"> <img src="./workshops/<?php echo $row['image']; ?>" alt=""> </div> <div class="title my-1 px-2"><?php echo $row['title']; ?></div> </a> </div> </div> <?php } ?> </div> </div> <script> document.querySelector("title").innerText = "Workshops"; <?php if($user_type==1){ ?> document.querySelectorAll(".navbar-nav a")[4].classList.add("active"); <?php } else { ?> document.querySelectorAll(".navbar-nav a")[1].classList.add("active"); <?php } ?></script> <?php include './footer.php'; ?>