-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
88 lines (72 loc) · 1.48 KB
/
home.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
78
79
80
81
82
83
84
85
86
87
88
<?php
session_start();
include('config.php');
?>
<!-- PHP CODE STARTS HERE -->
<?php
// CHECKING IF A SESSION W'LOGGEDIN HAS BEEN GENERATED
if (!$_SESSION['LoggedIn']) {
echo"<script type='text/javascript'>
alert('YOU ARE NOT LOGGED IN YET!');
window.location.href='index.php';
</script>";
}
include('userdata.php');
?>
<!-- PHP CODE ENDS HERE -->
<!-- HTML CODE STARTS HERE -->
<!DOCTYPE html>
<html>
<head>
<title>Member's Area | Arijit Banerjee</title>
</head>
<body>
<font face="verdana,arial">
<style type='text/css'>
.a_left {
float: left;
#width:33.33333%;
text-align:left;
}
.a_right {
float: right;
width:66.66666%;
text-align:right;
}
</style>
<div id='menu'>
<p class='a_left'>Hi <?php echo $name; ?>, Welcome<p align='right'></p>
<p class='a_right'>Menu : <a href='profile.php'>My Profile</a> | <a href="posts.php">View Posts</a> | <a href="create_new_post.php">Create New Post</a> | <a href='logout.php'>Log Out</a></p>
</div>
<br><br><br><br><br><br>
<style>
table#t1 {
border-collapse: collapse;
}
th, td {
padding: 15px;
}
</style>
<!--<center>-->
<table border="2" align="center" id="t1">
<th>
<h1>MENU</h1>
</th>
<tr>
<td>
<font size="5">
<ul>
<li><a href="posts.php">View Posts</a> </li>
<li><a href="create_new_post.php">Create New Post</a> </li>
<li><a href="profile.php">My Profile</a> </li>
</ul>
<!--</center>-->
</font>
</td>
</tr>
<?php
mysqli_close($conn);
?>
</body>
</html>
<!-- HTML CODE ENDS HERE -->