Server IP : 108.163.255.210 / Your IP : 3.144.9.183 Web Server : Apache System : Linux blossom.urlnameserver.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64 User : ( 1172) PHP Version : 7.2.34 Disable Function : eval,escapeshellarg,proc_close,proc_get_status,proc_nice,proc_open,symlink,system,pcntl_exec,getrusage,chown,chgp,closelog,openlog,syslog,define_syslog_variables,php_ini_loaded_file,getservbyname,getservbyport,posix_getgid,posix_getgrgid,proc_terminate,pfsockopen,apache_child_terminate,posix_mkfifo,posix_setpgid,posix_setuid,hypot,pg_host,pos,posix_access,posix_getcwd,posix_getservbyname,myshellexec,getpid,posix_getsid,posix_isatty,posix_kill,posix_mknod,posix_setgid,posix_setsid,posix_setuid,posix_times,posix_uname,ps_fill,posix_getpwuid,global,ini_restore,zip_open,zip_read,rar_open,bzopen,bzread,bzwrite,apache_get_modules,apache_get_version,phpversionphpinfo,php_ini_scanned_files,get_current_user,disk_total_space,diskfreespace,leak,imap_list,hypo,filedump,safe_mode,getmygid,apache_getenv,apache_setenv,bzread,bzwrite,bzopen,phpini,higlight_file,dos_conv,get_cwd,er_log,cmd,e_name,vdir,get_dir,only_read,ftok,ftpexec,posix_getpwnam,mysql_list_dbs,disk_free_space,session_save_path,confirm_phpdoc_compiled,zip_entry_rea,php_u,psockopen,crack_opendict,crack_getlastmessage,crack_closedict,crack_check,fpassthru,posix_get_last_error,posix_getlogin,posix_getgroups,posix_strerror,posix_getrlimit,posix_getpgrp,posix_getgrnam,pos,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/unilinki/public_html/payroll/admin/ |
Upload File : |
<?php session_start(); @error_reporting(E_ALL & ~E_NOTICE); if(!isset($_SESSION["adminuser"]) || $_SESSION["adminuser"]=="") { header("Location:login.php"); exit; } $uid=md5(uniqid(rand())); include("../include/db.php"); date_default_timezone_set('UTC'); $sysdate=date("Y/m/d h:i:s"); $stdate1=date("l, d F Y"); $obj=new query_execution(); $heading="Salary Slip Report"; $subheading="Salary Slip"; $submit="View Salary Slip"; $var=$_GET['var']; if($var==NULL) { $option="<option value=''>Select Branch</option>"; } else { $option="<option value='$var' selected>$var</option>"; } require_once("header.php"); ?> <script language="javascript"> function getval(sel) { var url = sel.value; var url1="salary_slip.php?var="; // get selected value if (url) { // require a URL window.location =url1+ url; // redirect } return false; } function x(){ } </script> <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script> <link rel="stylesheet" href="/resources/demos/style.css"> <script type="text/javascript"> // When the document is ready $(document).ready(function () { $('#startDate').datepicker({ format: "mm/yyyy", viewMode: "months", minViewMode: "months" }); }); </script> <!----header ends--> <!-- Left side column. contains the logo and sidebar --> <?php require_once("left.php"); ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1>Manage <?php echo $heading?></h1> <ol class="breadcrumb"> <li><a href="dashboard.php"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active"><?php echo $subheading?></li> </ol> </section> <!-- Main content --> <section class="content"> <div class="row"> <!-- right column --> <div class="col-md-12"> <!-- Horizontal Form --> <div class="box box-info"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $subheading?></h3> </div><!-- /.box-header --> <!-- form start --> <form id="form-signup_v1" name="form-signup_v1" method="post" action="salary-slip.php" class="form-horizontal validation-form-container" enctype="multipart/form-data"> <div class="box-body"> <?php if($_SESSION['branch']=='' ) {?> <div class="form-group field"> <label for="signup_v1-cat_name" class="col-sm-2 control-label">Select Branch</label> <div class="col-sm-10 ui left labeled input"> <select name="comp" class="form-control" data-validation="[NOTEMPTY]" data-validation-message="Branch must not be empty" onchange="getval(this);"> <?php echo $option ; $sql=mysql_query("select * from companies"); while($f=mysql_fetch_array($sql)) { $name=$f['name']; ?> <option value="<?php echo $name ?>"><?php echo $name ?></option> <?php } ?> </select> <div class="ui corner label"> <i class="asterisk icon">*</i> </div> </div> </div> <div class="form-group field"> <label for="signup_v1-cat_name" class="col-sm-2 control-label">Select Employee ID</label> <div class="col-sm-10 ui left labeled input"> <select name="emp" class="form-control" data-validation="[NOTEMPTY]" data-validation-message="Employee ID must not be empty"> <option value="" >Select Employee name (ID)</option> <?php $sql1=mysql_query("select * from employee where company='$var'"); while($f1=mysql_fetch_array($sql1)) { $name1=$f1['name']; $id1=$f1['id']; ?> <option value="<?php echo $id1 ?>"><?php echo $name1 ?> (<?php echo $id1 ?>)</option> <?php } ?> </select> <div class="ui corner label"> <i class="asterisk icon">*</i> </div> </div> </div> <?php } ?> <div class="form-group field"> <label for="signup_v1-cat_name" class="col-sm-2 control-label">Select Month</label> <div class="col-sm-10 ui left labeled input"> <input type="text" class="form-control" placeholder="Select Month" name="month" id="startDate" value="<?php echo $month?>" data-validation="[NOTEMPTY]" data-validation-message="Month must not be empty"> <div class="ui corner label"> <i class="asterisk icon">*</i> </div> </div> </div> <!-- /.box-body --> <div class="box-footer"> <input type="submit" name="smt" id="smt" value="<?php echo $submit?>" class="btn btn-info pull-right"> <input type="hidden" name="smt1" value="smt1"> </div><!-- /.box-footer --> </form> </div><!-- /.box --> </div><!--/.col (right) --> </div> <!-- /.row --> </section><!-- /.content --> </div><!-- /.content-wrapper --> <?php require_once("footer.php"); ?>