Linux 0193-eed-moe-app01 5.15.0-46-generic #49-Ubuntu SMP Thu Aug 4 18:03:25 UTC 2022 x86_64
Apache/2.4.52 (Ubuntu)
: 172.16.229.234 | : 3.144.88.107
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.18
www-data
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
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
eedpims /
applicantlist /
[ HOME SHELL ]
Name
Size
Permission
Action
ajaxselection.php
6.05
KB
-rw-r--r--
applicantlist.php
4.83
KB
-rw-r--r--
applicantlist_editor.php
8.62
KB
-rw-r--r--
applicantlist_list.php
7.01
KB
-rw-r--r--
applicantlist_manual.php
4.64
KB
-rw-r--r--
applicantlist_manual_editor.ph...
8.52
KB
-rw-r--r--
applicantlist_manual_list.php
6.67
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : applicantlist_list.php
<?php include("../homepage/header.php"); include("../homepage/headermenu.php"); if(empty($_SESSION["username"])) { Header("Location: ../login/login.php"); } ?> <div class="container fullheight"> <div class="row"> <div class="col-md-6 col-md-offset-4"> <br/> <form name="search_frm" id="search_frm" class="form-inline"> <label>Search Key</label> <input type="text" name="field_value" id="field_value" value="<?=$_SESSION["field_value"]?>" class="form-control"> <input type="hidden" name="cmd" id="cmd" value="search_applicantlist" > <input type="submit" class="btn btn-primary" value="Search"> </form> </div> </div> <div class="row"> <div class="col-md-12"> <a style="text-decoration: none" href="applicantlist.php?cmd=edit" class="btn btn-primary"> প্রশিক্ষণার্থীর তথ্য এন্ট্রি </a> <br/> <br/> <table class="table table-bordered table-striped table-condens" > <thead> <th>PIMS আইডি</th> <th>ব্যাচ শিরোনাম</th> <th>জেলা</th> <th>নাম</th> <th>এনআইডি(NID)</th> <th>পদবি</th> <th>অফিস</th> <th>ঠিকানা</th> <th>মোবাইল</th> <th>ই-মেইল</th> <th>মন্তব্য</th> <th>ক্রম নং</th> <th style="text-align: center">সংশোধন</th> <th style="text-align: center">ডিলিট</th> </thead> <tbody> <?php if($_SESSION["search"]=="yes") { $val= $_SESSION["field_value"]; $whrstr = "%$val%"; } else { $whrstr = "%%"; } $rowsPerPage = 10; $pageNum = 1; if(isset($_REQUEST["page"])) { $pageNum = $_REQUEST["page"]; } $offset = ($pageNum - 1) * $rowsPerPage; $stmt = $conn->prepare("SELECT ap.id, ap.GovtId, ap.trevent_id, ap.district_id, ap.apname, ap.designation_id, ap.office_id, ap.address, ap.mobileno, ap.email, ap.comment, ap.nidcard, tr.subject, d.DesignationName, o.OfficeName, dis.DistrictName, ap.srlno FROM applicantlist ap LEFT JOIN trevent tr ON(ap.trevent_id=tr.id) LEFT JOIN designation d ON(ap.designation_id=d.id) LEFT JOIN office o ON (ap.office_id=o.id) LEFT JOIN district dis ON (ap.district_id=dis.id) WHERE ap.apname LIKE ? ORDER BY ap.id DESC LIMIT ?, ?"); $stmt->bind_param("sii",$whrstr,$offset,$rowsPerPage); $stmt->execute(); $slno=0; //Result $result1 = $stmt->get_result(); $numrows=$result1->num_rows; if($numrows==0) exit("No rows"); $slno=0; while($row = $result1->fetch_assoc()) { $id = $row["id"]; $GovtId = $row["GovtId"]; $trevent_id = $row["trevent_id"]; $district_id = $row["district_id"]; $apname = $row["apname"]; $designation_id = $row["designation_id"]; $office_id = $row["office_id"]; $address = $row["address"]; $mobileno = $row["mobileno"]; $email = $row["email"]; $comment = $row["comment"]; $subject = $row["subject"]; $DesignationName = $row["DesignationName"]; $OfficeName = $row["OfficeName"]; $DistrictName = $row["DistrictName"]; $nidcard = $row["nidcard"]; $srlno = $row["srlno"]; ?> <tr> <td><?=bangladate($GovtId) ?></td> <td><?=$subject ?></td> <td><?=$DistrictName ?></td> <td><?=$apname ?></td> <td><?=bangladate($nidcard) ?></td> <td><?=$DesignationName ?></td> <td><?=$OfficeName ?></td> <td><?=$address ?></td> <td><?=$mobileno ?></td> <td><?=$email ?></td> <td><?=$comment ?></td> <td><?=bangladate($srlno) ?></td> <td align="center"> <a href="applicantlist.php?cmd=edit&id=<?=$id?>"> <span class="glyphicon glyphicon-pencil"></span></a> </td> <td align="center"> <a href="applicantlist.php?cmd=delete&id=<?=$id?>" onClick=" return confirm('তথ্য মুছে ফেলতে আপনি কি নিশ্চিত?');"> <span class="glyphicon glyphicon-trash"></span></a> </td> </tr> <?php } ?> </tbody> </table> <div align="center"> <?php $stmt = $conn->prepare("SELECT id FROM applicantlist WHERE id LIKE ? ORDER BY id ASC"); $stmt->bind_param("s",$whrstr); $stmt->execute(); //Result $result = $stmt->get_result(); $numrows=$result->num_rows; $maxPage = ceil($numrows/$rowsPerPage); $self = "applicantlist.php?cmd=list"; $nav = ""; $start = ceil($pageNum/5)*5-5+1; $end = ceil($pageNum/5)*5; if($maxPage<$end) { $end = $maxPage; } for($page = $start; $page <= $end; $page++) { if ($page == $pageNum) { $nav .= "<span class=\"page-link\"><font color=\"red\">$page</font></span>"; } else { $nav .= " <a href=\"$self&&page=$page\" class=\"page-link\">$page</a> "; } } if ($pageNum > 1) { $page = $pageNum - 1; $prev = " <a href=\"$self&&page=$page\" class=\"page-link\">Prev</a> "; $first = " <a href=\"$self&&page=1\" class=\"page-link\">[First Page]</a> "; } else { $prev = " "; $first = " "; } if ($pageNum < $maxPage) { $page = $pageNum + 1; $next = " <a href=\"$self&&page=$page\" class=\"page-link\">Next</a> "; $last = " <a href=\"$self&&page=$maxPage\" class=\"page-link\">Last Page</a> "; } else { $next = " "; $last = " "; } if($numrows>1) { echo '<nav> <ul class="pagination"> <li class="page-item">'.$first.'</li><li class="page-item">'.$prev.'</li> <li class="page-item">'.$nav .'</li> <li class="page-item">'.$next.'</li> <li class="page-item">'. $last.'</li> </ul></nav>'; } ?> </div> </div> </div> </div> <?php include("../homepage/footer.php"); ?>
Close