0byt3m1n1
Path:
C:
/
GEOMATICS 23-01-2021
/
LAN
/
CPMS code
/
CPMS
/
ADMIN
/
[
Home
]
File: project_verify_edit.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>Artificial Casting</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:200px; height:115px; z-index:1; left: 296px; top: 75px; } #apDiv2 { position:absolute; width:274px; height:168px; z-index:1; left: 248px; top: 343px; } .style13 {font-size: 12px} .style14 {font-size: 14px} --> </style> </head> <body> <p> <?php include("include/adminheader.php"); require_once "project_verify_edit_ctrl.php"; ?> </p> <p></p> <p align="center" class="projectboldtxt style14">Project verification date</p> <form action="project_verify_edit_ctrl.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <table width="681" border="0" align="center"> <tr> <td width="128">Project ID</td> <td width="480"><label> <input name="txtid" type="text" id="txtid" size="5" readonly="readonly" value="<?php if(isset($_POST['Save']))echo $editpid; else echo $p_id;?> "/> </label></td> </tr> <tr> <td>Project Code</td> <td><?php echo $code;?></td> </tr> <tr> <td>Verification Date</td> <td><table width="513" border="0"> <tr> <td width="20"><label> <input name="txtdd" type="text" id="txtdd" size="3" maxlength="2" value="<?php if(isset($_POST['Save']))echo $dd_restore; else echo $verify_dd;?> "/> </label></td> <td width="10">-</td> <td width="12"><input name="txtmm" type="text" id="txtmm" size="3" maxlength="2" value="<?php if(isset($_POST['Save']))echo $mm_restore; else echo $verify_mm;?> "/></td> <td width="10">-</td> <td width="24"><input name="txtyy" type="text" id="txtyy" size="5" maxlength="4" value="<?php if(isset($_POST['Save']))echo $yy_restore; else echo $verify_yy;?> "/></td> <td width="133">(DD-MM-YYY)</td> <td width="274"><span class="valText"> <?php if(isset($error['date'])) { echo $error['date']; } ?> </span></td> </tr> </table></td> </tr> <tr> <td> </td> <td><label> <input type="submit" name="Save" id="Save" value="Save" /> </label></td> </tr> <tr> <td> </td> <td><a href="project_verify.php"><< Back</a></td> </tr> </table> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> </form> <p> </div> <?php include "include/footer.php";?></p> </body> </html> <?php if (isset($_POST['summarybtn'])) { $division_index=$_POST['cmbdivision']; $division_value=$u_name_array[$division_index]; @$_SESSION['division_d']=$division_value; $url=$server_ip."/ADMIN/summary_division.php?pcode=".$division_value; echo "<script>window.location='$url'</script>"; } if(isset($_POST['last_quantiti_stockbtn'])) { $division_index=$_POST['cmbdivision']; $division_value=$u_name_array[$division_index]; @$_SESSION['division_d']=$division_value; $url=$server_ip."/ADMIN/lastphysicalquantity.php?pcode=".$division_value; echo "<script>window.location='$url'</script>"; } if(isset($_POST['salaryvoucherbtn'])) { $division_index=$_POST['cmbdivision']; $division_value=$u_name_array[$division_index]; @$_SESSION['division_d']=$division_value; $url=$server_ip."/ADMIN/salaryvoucher_report.php?pcode=".$division_value; echo "<script>window.location='$url'</script>"; } ?>