0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
USER
/
[
Home
]
File: salaryreport.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Salary Report |online project financial management system for CWRDM</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="../style.css" rel="stylesheet" type="text/css" /> <link rel="icon" href="../images/icon.ico" /> <style type="text/css"> <!-- #apDiv1 { position:absolute; width:60px; height:37px; z-index:1; left: 675px; top: 390px; } .style6 { font-size: 16px } .style7 {font-size: 14px} --> </style> </head> <body> <p> <!--<div id="headerbg"> <div id="headerblank">--> <?php include("include/first_userheader.php"); include("salaryreport_ctrl.php"); @$_SESSION['sl_no']=0; ?> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p align="center" class="projectboldtxt style6">Salary Report</p> <form action="salaryreport_ctrl.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <table width="430" height="183" align="center" bgcolor="#F7E7BD"> <tr> <th height="42" class="projectboldtxt" scope="row"><div align="left" class="">From date</div></th> <td><label><span class="valText"></label> <table width="311" border="0"> <tr> <td width="40"><select name="cmbsalfdd" id="cmbsalfdd"> <?php for ($i=1; $i<=31; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$fromdate_dd==$i) { echo "selected='selected'"; } ?> ><?php echo $i ?></option> <?php } ?> </select></td> <td width="40"><select name="cmbsalfmm" id="cmbsalfmm"> <?php for($i=1; $i<=12; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$fromdate_mm==$i) { echo "selected='selected'"; } ?> ><?php echo $month[$i]; ?></option> <?php } ?> </select></td> <td width="30"><input name="txtsalfyy" type="text" id="txtsalfyy" value="<?php if($fromdate_yy!="") echo $fromdate_yy;?>" size="5" maxlength="4" /></td> <td width="183"><?php if(isset($error['fdate_yy'])) { echo $error['fdate_yy']; } if(isset($error['fdate_numeric'])) { echo $error['fdate_numeric']; } ?></td> </tr> </table></td> </tr> <tr> <th height="37" class="projectboldtxt" scope="row"><div align="left" class="">To date</div></th> <td><label><span class="valText"></label> <table width="315" border="0"> <tr> <td width="40"><select name="cmbsaltodd" id="cmbsaltodd"> <?php for($i=1; $i<=31; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$todate_dd==$i) { echo "selected='selected'"; } ?> ><?php echo $i; ?></option> <?php } ?> </select></td> <td width="40"><select name="cmbsaltomm" id="cmbsaltomm"> <?php for ($i=1; $i<=12; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$todate_mm==$i) { echo "selected='selected'"; } ?> ><?php echo $month[$i]; ?></option> <?php } ?> </select></td> <td width="30"><input name="txtsaltoyy" type="text" id="txtsaltoyy" value="<?php if($todate_yy!="") echo $todate_yy;?>" size="5" maxlength="4" /></td> <td width="183"><?php if(isset($error['todate_yy'])) { echo $error['todate_yy']; } else if(isset($error['todate_numeric'])) { echo $error['todate_numeric']; } ?></td> </tr> </table></td> </tr> <tr> <th class="projectboldtxt" scope="row"><div align="left" class="">Complete Days</div></th> <td><label> <input name="checkcompletedays" type="checkbox" id="checkcompletedays" value="fullday" /> </label></td> </tr> <tr> <th width="108" height="24" class="projectboldtxt" scope="row"><div align="left" class="">Employee name</div></th> <td width="310"><label> <select name="cmbempname" id="cmbempname"> <option value="0" selected="selected"><?php echo "All"; ?></option> <?php for($j=1;$j<=$emp_count;$j++) {?> <option value="<?php echo $j; ?>"><?php echo $emp_name_array[$j]; ?></option> <?php } ?> </select> </label></td> </tr> <tr> <th height="26" scope="row"> </th> <td><label> <input type="submit" name="show" id="show" value="SHOW" /> <a href="task.php" class="projectboldtxt">Back</a></label></td> </tr> </table> </form> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </div> <?php include "include/footer.php"; ?> </p> </body> </html>