0byt3m1n1
Path:
C:
/
GEOMATICS 23-01-2021
/
LAN
/
CPMS code
/
CPMS
/
USER
/
[
Home
]
File: firstuserhome.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>first userhome |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" /> </head> <body> <p> <!--<div id="headerbg"> <div id="headerblank">--> <?php @session_start(); include("include/first_userheader.php"); require_once "selectproject_ctrl.php"; $temp=@$_POST['selctproject']; if(@$_POST['selctproject'] != "") { @$_SESSION['project_code_s']=$p_code_array[$temp]; } $p_id=@$_SESSION['project_code_s']; $sql="select project_id from addproject where project_code='$p_id'"; $sql=mysql_query($sql); while($row=mysql_fetch_array($sql)) { @$_SESSION['project_id']=$row[0]; } $proj_id = @$_SESSION['project_id']; $sql="select verify_date from addproject where project_id='$proj_id'"; $sql=mysql_query($sql); while($row=mysql_fetch_array($sql)) { $verify_date=$row['verify_date']; } ?> </div> </div> </p> <p> </p> <table width="420" border="0"> <tr> <td width="176">Your last verification date :</td> <td width="234"><span class="leftboldtxt"><?php if ($verify_date==""){echo "Not verified yet";}else{echo $verify_date;}?></span></td> </tr> </table> <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>