0byt3m1n1
Path:
C:
/
GEOMATICS 23-01-2021
/
LAN
/
CPMS
/
ADMIN
/
[
Home
]
File: fund.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>Fund Summary |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"> <!-- .style6 {font-size: 16px} --> </style> <!--Ajax contend--> <script type="text/javascript"> function finYearSecond(str) { var xmlhttp; if (str.length==0) { document.getElementById("ajaxtext").innerHTML='<input name="txtfin2" type="text" id="txtfin2" value="" size="5" maxlength="4" readonly="readonly"/>'; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("ajaxtext").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","../ajax/gefinyear.php?q="+str,true); xmlhttp.send(); } </script> <!--Ajax contend--> </head> <body> <p> <!--<div id="headerbg"> <div id="headerblank">--> <?php include("include/adminheader.php"); require_once "fund_ctrl.php"; // include("ledger_ctrl.php"); @$_SESSION['sl_no']=0;?> </div> </div> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p align="center" class="projectboldtxt style6">Fund Summary - PI wise</p> <form action="fund_ctrl.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <table width="577" height="121" align="center" bgcolor="#F7E7BD"> <tr> <th width="116" height="34" class="projectboldtxt" scope="row"><div align="left" class="">Financial Year</div></th> <td width="160"><label></label> <table width="349" border="0"> <tr> <td width="30"><input name="txtfin1" type="text" id="txtfin1" value="<?php if($fin_year_1!="") echo $fin_year_1;?>" size="5" maxlength="4" autocomplete="off" onkeyup="finYearSecond(this.value)" /></td> <td width="2"><strong>-</strong></td> <td width="32"><div id="ajaxtext"><input name="txtfin2" type="text" id="txtfin2" value="<?php if($fin_year_2!="") echo $fin_year_2;?>" size="5" maxlength="4" readonly="readonly"/> </div></td> <td width="259"><span class="valText"> <?php if(isset($error['year_numeric'])) { echo $error['year_numeric']; } ?> </span></td> </tr> </table></td> </tr> <tr> <th height="51" class="projectboldtxt" scope="row"><div align="left" class="">Principle Investigator</div></th> <td><label> <select name="cmbaccname" id="cmbaccname"><?php for($j=1;$j<=$i;$j++) {?> <option value="<?php echo $j; ?>"><?php echo $acc_name_array[$j]; ?></option><?php }?> </select> </label></td> </tr> <tr> <th height="26" scope="row"><a href="reports.php"><< Back</a></th> <td><label> <input type="submit" name="show" id="show" value="SHOW" /> </label></td> </tr> </table> </form> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </div> <?php include "include/footer.php"; ?> </p> </body> </html>