session_start();
$userId=$_SESSION["userId"];
if(!isset($userId))
{
//header("Location: ../profile/newaccount.php?a=displayLogin");
?>
header("Location: ../profile/newaccount.php?a=displayLogin");
}
if(count($_POST)){
foreach ($HTTP_POST_VARS as $key => $value) {
$$key = $value;
}
}
$a=$_REQUEST["a"];
?>
|
include("../include/top.php"); ?>
|
|
| :: WELCOME
TO FPSC ONLINE RECRUITMENT SYSTEM |
| |
|
| |
Welcome, echo "".strtoupper($_SESSION["fname"])." ". strtoupper($_SESSION[lname])." "; ?>
What would you like to do? |
|
| include("../include/bottom.php"); ?> |
|