0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
ADMIN
/
[
Home
]
File: salaryvoucher_report.php
<?php $MAIN_HEADING = "Salary voucher Report"; ?> <?php include("include/adminheader.php"); require_once "salaryvoucher_report_ctrl.php"; @$_SESSION['sl_no']=0;?> <p> </p> <span class="msgText"><?php if (isset($message)) echo $message;?></span> <form action="salaryvoucher_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="600" height="138" align="center"> <tr> <td><table width="378" align="center"> <tr> <td class="projectboldtxt">Employee</td> <td> <select class="form-control" 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> </td> </tr> <tr><td><br/></td></tr> <tr> <td width="148" class="projectboldtxt">Year</td> <td width="218"> <input class="form-control" name="txtyear" type="text" id="txtyear" value="<?php if (isset($year) && $year!="") { echo $year; } ?>"size="2" maxlength="4" /> <span class="valText"> <?php if(isset($error['year'])) { echo $error['year']; } else if(isset($error['year_numeric'])) { echo $error['year_numeric']; } ?> </span></td> </tr> <tr><td><br/></td></tr> <tr> <td class="projectboldtxt">Month</td> <td> <select class="form-control" name="cmbmonth" id="cmbmonth"> <?php for($i=1; $i<=12; $i++) { ?> <option value="<?php echo $i; ?>"<?php if(@$month_var==$i) { echo "selected='selected'"; } ?> ><?php echo $month[$i]; ?></option> <?php } ?> </select> </td> </tr> <tr><td><br/></td></tr> <tr> <td class="projectboldtxt">Number of Working day</td> <td> <input class="form-control" name="txtworkday" type="text" id="txtworkday" value="<?php if (isset($num_of_work_day) && $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></td> </tr> <tr><td><br/></td></tr> </table></td> </tr> </table> <div class="form-group"> <div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-4"> <input class="btn btn-success" type="submit" name="showbtn" id="showbtn" value="Show" /> <a class="btn btn-default" href="salaryvoucher_datewise_report.php" class="projectboldtxt style2">Date Wise</a> <a href="division_report.php" class="projectboldtxt style2">Back </a> </div> </div> </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>