HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/xampp/htdocs/PSA/user_dashboard.php
<?php
session_start();
include("functions.php");
if(isset($_SESSION["user_id"])) {
	if(isLoginSessionExpired()) {
		header("Location:logout.php?session_expired=1");
	}
}
?>
<html>
<head>
<title>User Login</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<table border="0" cellpadding="10" cellspacing="1" width="100%">
<tr class="tableheader">
<td align="center">User Dashboard</td>
</tr>
<tr class="tablerow">
<td>
<?php
if(isset($_SESSION["user_name"])) {
?>
Welcome <?php echo $_SESSION["u_name"]; ?>. Click here to <a href="logout.php" tite="Logout">Logout.
<table align="center">

<body>

<br><br>
<a href="../PSA112T">SID(15339-CRPC6)</a><br>
<a href="../PSATVI-ip">TVI(15339-CRPC6)</a><br>
<a href="./indexE.htm">SCCA to icc profile</a><br>
<a href="../PSATR16">TR016 report</a><br>
<br>
<a href="../PSASID">SID predict tool</a><br>

<br>
<a href="../PSAProduction3">Production 3</a><br>
<br>
<a href="../PSATR16S">IT874 report(TR016)</a><br>

<br>
<a href="../PSATR16ip">TR016 report(i1 Profiler)</a><br>

</body>


<tr>
<td align="center"><font size="-2"> &copy; <a href="mailto:[email protected]">Fred Kuo</a>, 2015. All rights reserved.<br><a href="http://www.fredkuo.idv.tw/wordpress/?p=1025">Read more.</a><br>
</td>
</tr>
</form>
</table>



<?php
}
?>
</td>
</tr>

</body></html>