Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.22.70.140
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
payroll /
reports /
[ HOME SHELL ]
Name
Size
Permission
Action
logo
[ DIR ]
drwxr-xr-x
8A_report.php
2.92
KB
-rw-r--r--
bankTransfer_reports.php
2.88
KB
-rw-r--r--
gIDeductions_reports.php
3.08
KB
-rw-r--r--
gpf_reports.php
2.89
KB
-rw-r--r--
incomeTax_reports.php
2.92
KB
-rw-r--r--
lic_reports.php
2.68
KB
-rw-r--r--
npsGovtcontribution_report.php
4.16
KB
-rw-r--r--
nps_reports.php
2.85
KB
-rw-r--r--
payBill_reports.php
6.71
KB
-rw-r--r--
salarDefference_report.php
2.67
KB
-rw-r--r--
societyLoan_reports.php
2.69
KB
-rw-r--r--
totalSalary_reports.php
16.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : societyLoan_reports.php
<?php error_reporting(1); include('../include/config.php'); require_once("../functions.php"); global $db; ?> <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> table { border-collapse: collapse; border-spacing: 0; width: 100%; border: 1px solid #000; font-size:12px } th, td { text-align: left; padding: 4px; } </style> </head> <body> <script> function myFunction() { window.print(); } </script> <meta name="viewport" content="width=device-width, initial-scale=1"> <div style="text-align:left"> <button onclick="myFunction()">Print Report</button> </div> <table style="border:none"> <tr> <td collspan="5" style="text-align: center;"><span style="color:#903; font-family:Tahoma, Geneva, sans-serif"><img src="logo/mcmlogo.png" height="70" width="580" align="absmiddle" /> </span></td> </tr> <tr> <td style="text-align:center;"><b>Meerut (U.P)</b></td> </tr> <tr> <td style="text-align: center;"><b>Society Loan</b></td> </tr> </table> <br> <div style="overflow-x:auto;"> <table class="tftable" border="1"> <thead> <tr> <th>S.No</th> <th>Emp_Code</th> <th>Employee Name</th> <th>Amount</th> </tr> </thead> <tbody> <?php $f_date = date('Y-m-d',strtotime($_GET['from_date'])); $t_date = date('Y-m-d',strtotime($_GET['to_date'])); $q="select * from pay_slip WHERE 1"; if(isset($_GET['year']) && $_GET['year']!='All'){$q.=" AND year = '".$_GET['year']."'";} if(isset($_GET['from_date']) && $_GET['from_date']!=''){$q.=" AND date between '$f_date' AND '$t_date' ";} $q.=" ORDER BY emply_code ASC "; $res=$db->query($q); $count=1; while($row=$db->fetch_array($res)) { $data=$db->fetch_array($db->query("select* from employee_entry where emplyoee_code = '".$row['emply_code']."' ")); ?> <tr> <td><?php echo $count++; ?></td> <td style="min-width: 70px;"><?php echo $row['emply_code']; ?></td> <td style="min-width: 100px;"><?php echo $row['Name']; ?></td> <td><?php echo $row['socity_loan']; ?></td> </tr> <?php } ?> </tbody> </table> </div> </body> </html>
Close