-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprof.php
78 lines (30 loc) · 863 Bytes
/
prof.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title> prof of client</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body >
<nav class ="topnav">
<a style="text-decoration: none" href="clienthome.php">Home</a>
<a href="clientcat.php">Categories</a>
<a href="bestsellerclient.php">Best Sellers</a>
<a href="newReleaseclient.php">New Releases</a>
<a href="p3.php">Contact</a> <a href="about3.php">About</a>
<a href="logout.php"> Logout </a> </nav>
<h1>
<?php
if(!isset($_SESSION))
{
session_start();
}
$login_session=$_SESSION['username'];
$usert=$_SESSION['users'];
echo $login_session." "."(".$usert.")" ;?>
</h1>
</body>
<footer class ="topnav">
<a href="privacypolicy.html">Privacy Policy</a>
<a href="terms.ofuse.html">Terms of Use</a>
</footer>
</html>