Tn Jones Shell Bypass
:
3.12.107.129
:
160.187.54.56 / upgov.net
:
Linux 160-187-54-56.cprapid.com 4.18.0-553.22.1.lve.1.el7h.x86_64 #1 SMP Tue Oct 8 14:36:03 UTC 2024 x86_64
:
/
home
/
upgov
/
www
/
rmpyrll
/
Upload File:
files >> /home/upgov/www/rmpyrll/deptreport.php
<?php date_default_timezone_set("Asia/Kolkata"); ?> <?php include("connection.php"); session_start(); if (!isset($_SESSION['user']) || ($_SESSION['password'] == '')) { header("location:payrolLogin/index.php"); exit(); } if(isset($_SESSION['user'])) { $dept=$_SESSION['department']; $sche=$_SESSION['scheme']; $username=$_SESSION['user']; } $user_query = mysql_query("SELECT * FROM login where user='$username' ")or die(mysql_error()); $user_row = mysql_fetch_array($user_query); $dd = $user_row['department']; $ud = $user_row['district']; $ss = $user_row['scheme']; $hs = $user_row['sub_select']; $us = $user_row['user']; ?> <!DOCTYPE html> <html> <head> <title>Payroll</title> <link href="css/bootstrap.css" rel='stylesheet' type='text/css'/> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="js/jquery.min.js"></script> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="keywords" content="Payroll Responsive web template, Bootstrap Web Templates, Flat Web Templates, Andriod Compatible web template, Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyErricsson, Motorola web design" /> <script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script> <link rel="stylesheet" href="css/flexslider.css" type="text/css" media="screen" /> <link href="css/style.css" rel="stylesheet" type="text/css" media="all" /> <!---- start-smoth-scrolling----> <script type="text/javascript" src="js/move-top.js"></script> <script type="text/javascript" src="js/easing.js"></script> <script src="js/jquery.easydropdown.js"></script> <script src="js/cbpViewModeSwitch.js" type="text/javascript"></script> </head> <body> <div class="header"> <div class="container"> <div class="logo"> <a href="index.html"><img src="images/logo.png" alt=""/></a> </div> <div class="top-menu"> <span class="menu"> </span> </div> <div id="sb-search" class="sb-search"> <h4 align="right"><a href="logout.php"><img src="images/logout.jpg"></a></h4> </div> <!-- search-scripts --> <script src="js/classie.js"></script> <script src="js/uisearch.js"></script> <!-- //search-scripts --> </div> </div> <!-- header-section-ends --> <div class="content"> <h4 align="right"><a href="page1.php"><input type="button" name="" value="Back" style="width:100px;height:30px;background-color:#2A5CAA;color:white;margin:5px;"></a> </h4> <br><br><br> <center> <form method="post"> <div class="clearfix"></div> <div class="good-design"> <?php $sql=mysql_query("select * from health where department='$dd' AND district='$ud' order by month ASC")or die("select * from health where department='$dd' AND district='$ud'"); ?> <center> <table width="90%" border="1" align="center" style="position:relative;top:-20px;margin:20px;" class="maint"> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td colspan="8" align="center"><font size="+1">Report Panel - <?php echo $dd;?></font></td> </tr> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td colspan="8" align="center"><font size="+1">Attendance / Bill / Payment - Status of <?php echo $ss;?></font></td> </tr> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td colspan="8" align="center"><font size="+1"><?php echo $ud;?> - <?php echo $hs;?></font></td> </tr> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td align="center" rowspan="2"><font size="3"> S.no </font></td> <td align="center" rowspan="2"><font size="3"> Month </font></td> <td align="center" rowspan="2"><font size="+1"> Attendance </font></td> <td align="center" rowspan="2"><font size="+1"> Bill </font></td> <td align="center" colspan="2" ><font size="+1"> Payment </font> </td> <td align="center" rowspan="2"><font size="+1"> Remark </font></td> </tr> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td align="center"><font size="3">Dept.to Rama</font></td><td align="center"><font size="3">Rama to Emp.</font></td> </tr> <?php $count1=0; for($i=0;$r=mysql_fetch_array($sql);$i++) { $count1=$i+1; ?> <tr style="background-color:cream;color:blue;font-size:14px; font-family:'Times New Roman', Times, serif;" > <td align="center"> <font size="3"><?php echo $count1;?></font> </td> <td align="center"> <font size="3"><?php echo $r['month']; ?></font> </td> <?php $att=$r['attandance']; if($att !='') { ?> <td align='center' style='background-color:green;'><a href="<?php echo $r['attandance'];?>"><font size='3'>Y</font></a></td> <?php } else { ?> <td align='center' style='background-color:red;color:white'><a><font size='3'>N</font></a></td> <?php } ?> <?php $att=$r['bill']; if($att !='') { ?> <td align='center' style='background-color:green;'><a href="<?php echo $r['bill'];?>"><font size='3'>Y</font></a></td> <?php } else { ?> <td align='center' style='background-color:red;color:white'><font size='3'>N</font></td> <?php } ?> <?php $att=$r['payment']; if($att !='') { ?> <td align='center' style='background-color:green;'><a href="<?php echo $r['payment'];?>"><font size='3'>Y</font></a></td> <?php } else { ?> <td align='center' style='background-color:red;color:white'><font size='3'>N</font></td> <?php } ?> <?php $att=$r['salary']; if($att !='') { ?><td align='center' style='background-color:green;'><a href="<?php echo $r['salary'];?>"><font size='3'>Y</font></a></td>"; <?php } else { ?> <td align='center' style='background-color:red;color:white'><font size='3'>N</font></td> <?php } ?> <td align="center"> <font size="3"><?php echo $r['remark']; ?></font> </td> </tr> <?php } ?> </table> </form> </div> </div> <div class="footer"> <div class="container"> <div class="clearfix"></div> <div class="footer-bottom"> <p> Copyright ©2016 All rights Reserved | Designed by<a href="http://ramaipl.com" target="target_blank">RAMA INFOTECH PVT LTD</a></p> </div> <script type="text/javascript"> $(document).ready(function() { /* var defaults = { containerID: 'toTop', // fading element id containerHoverID: 'toTopHover', // fading element hover id scrollSpeed: 1200, easingType: 'linear' }; */ $().UItoTop({ easingType: 'easeOutQuart' }); }); </script> <a href="#" id="toTop" style="display: block;"> <span id="toTopHover" style="opacity: 1;"> </span></a> </div> </div> </body> </html>