0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
USER
/
[
Home
]
File: salaryvoucher_datewise_report.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>leave taken report| OFMSP</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"> <!-- .style1 { font-size: 16px } --> </style> </head> <body> <p> <!--<div id="headerbg"> <div id="headerblank">--> <?php include("include/userheader.php"); require_once "salaryvoucher_report_ctrl.php"; @$_SESSION['sl_no']=0;?> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <span class="msgText"><?php if (isset($message)) echo $message;?></span> <form action="salaryvoucher_datewise_report_ctrl.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <p align="center" class="projectboldtxt style1">Salary voucher Report</p> <table width="200" height="138" border="1" align="center"> <tr> <td><table width="378" align="center"> <tr> <td width="148" class="projectboldtxt">Employee</td> <td width="218"><label> <select name="cmbempname" id="cmbempname"> <option value="0" selected="selected"><?php echo "All"; ?></option> <?php for($j=1;$j<=$i;$j++) {?> <option value="<?php echo $j; ?>"><?php echo $emp_name_array[$j]; ?></option> <?php } ?> </select> </label></td> </tr> <tr> <td><span class="projectboldtxt">Start Date</span></td> <td><select name="cmbstartdd" id="cmbstartdd"> <?php for ($i=1; $i<=31; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$JD_dd==$i) { echo "selected='selected'"; } ?> ><?php echo $i ?></option> <?php } ?> </select> <select name="cmbstartmm" id="cmbstartmm"> <?php for($i=1; $i<=12; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$JD_mm==$i) { echo "selected='selected'"; } ?> ><?php echo $month[$i]; ?></option> <?php } ?> </select> <input name="txtstartyy" type="text" id="txtstartyy" value="<?php if ($JD_yy!="") { echo $JD_yy; } ?>" size="5" /> <span class="valText"> <?php if(isset($error['start_year'])) { echo $error['year']; } else if(isset($error['start_year_numeric'])) { echo $error['start_year_numeric']; } ?> </span></td> </tr> <tr> <td class="projectboldtxt">End Date</td> <td><select name="cmbenddd" id="cmbenddd"> <?php for ($i=1; $i<=31; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$JD_dd==$i) { echo "selected='selected'"; } ?> ><?php echo $i ?></option> <?php } ?> </select> <select name="cmbendmm" id="cmbendmm"> <?php for($i=1; $i<=12; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$JD_mm==$i) { echo "selected='selected'"; } ?> ><?php echo $month[$i]; ?></option> <?php } ?> </select> <input name="txtendyy" type="text" id="txtendyy" value="<?php if ($JD_yy!="") { echo $JD_yy; } ?>" size="5" /> <span class="valText"> <?php if(isset($error['end_year'])) { echo $error['end_year']; } else if(isset($error['end_year_numeric'])) { echo $error['end_year_numeric']; } ?> </span></td> </tr> <tr> <td class="projectboldtxt">Number of Working day</td> <td><label> <input name="txtworkday" type="text" id="txtworkday" value="<?php if ($num_of_work_day!="") { echo $num_of_work_day; } ?>" size="5" /> <span class="valText"> <?php if(isset($error['num_workday'])) { echo $error['num_workday']; } if(isset($error['wd_numeric'])) { echo $error['wd_numeric']; } if(isset($error['wd_invalid'])) { echo $error['wd_invalid']; } ?> </span></label></td> </tr> <tr> <td class="projectboldtxt"> </td> <td><label> <input type="submit" name="showbtn" id="showbtn" value="Show" /> <a href="leavemanagement.php" class="projectboldtxt style2">Back</a></label></td> </tr> </table></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> </div> <?php include "include/footer.php"; ?> </p> </body> </html>