Tn Jones Shell Bypass
:
18.118.210.183
:
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/billreport.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"); } else { $now = time(); // Checking the time now when home page starts. if ($now > $_SESSION['expire']) { session_destroy(); echo "Your session has expired! <a href='payrolLogin/login.php'>Login here</a>"; } else { 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']; $uu = $user_row['scheme']; $hos = $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 class="clearfix"></div> </div> <div class="clearfix"></div> </div> <!-- header-section-ends --> <div class="content"> <br> <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> <?php $w=$_REQUEST["t1"]; $w2=$_REQUEST["t2"]; $w3=$_REQUEST["t3"]; ?> <div class="good-design"> <form method='Post'> <td><font color="black"><b>MONTH</b></font></td> <td> <select name="t2" style="height:32px;width:250px;" > <?php $sql=mysql_query("SELECT distinct month FROM health WHERE department='$dd' AND scheme='$uu' AND district='$ud' and hospital='$hos' AND attandance <> '' and attandance is not null ORDER BY month")or die(mysql_error()); while($r = mysql_fetch_array($sql)) { ?> <option value="<?php echo $r['month'];?>"><?php echo $r['month'];?></option> <?php } ?> </select> </td><td><input type="submit" value="Search" style="font-weight:bold;height:30px;width:80px;background:#2A5CAA;color:#FFF;" /></td> <br><br> <h3><?php echo $department;?></h3> <table width="95%" border="1" align="center" style="position:relative;top:-20px;" class="maint"> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td align="center" colspan="6"><font size="+1">Report - <?php echo $dd;?> </font></td> </tr> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td colspan="6" align="center"><font size="+1">Bill - <?php echo $uu;?></font></td> </tr> <tr style="background-color:#2A5CAA;color:#FFFFFF;font-size:14px"> <td width="10%"><font size="+1"> S.No </font></td> <td width="10%"><font size="+1"> District </font></td> <td width="20%"><font size="+1"> Sub Location</font> </td> <td width="20%"><font size="+1"> Month </font></td> <td width="16%"><font size="+1"> Bill </font></td> <td width="16%"><font size="+1"> Date </font></td> </tr> <?php include('connection.php'); $sql=mysql_query("select * from health where department='$dd' AND scheme='$uu' AND district='$ud' AND month like '$w2%' order by sno desc")or die("select * from health where department='$dd' AND scheme='$uu' AND hospital='$hos' AND district='$ud' order by att_year,att_month desc"); $count1=0; for($i=0;$r=mysql_fetch_array($sql);$i++) { $count1=$i+1; ?> <tr style="color:black;font-size:14px; font-family:'Times New Roman', Times, serif" > <td align="center"> <font size="3"><?php echo $count1;?></font> </td> <td> <font size="+1"><?php echo $r['district'];?></font> </td> <td> <font size="+1"><?php echo $r['hospital'];?></font> </td> <td> <font size="+1"><?php echo $r['month']; ?></font> </td> <?php $att=$r['bill']; if($att !='') { ?> <td align='center' style='background-color:#73C259;color:white'><a target="_blank" href="<?php echo $r['bill'];?>"><font size='3'>Y</font></a></td> <?php } else { ?> <td align='center' style='background-color:#E32942;color:white'><font size='3'>N</font></td> <?php } ?> <td> <font size="+1"><?php echo $r['billformdate']; ?></font> </td> </tr> <?php }?> </table> </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> <?php }} ?> </form> </body> </html>