-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.php
44 lines (39 loc) · 1.35 KB
/
timeline.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
<?php
require("includes/header.php");
?>
<main>
<section class="timeline_section">
<div class="container">
<div class="row">
<div class="timeline_feeds">
The Feeds
</div>
<div class="sidebar_feeds">
<div class="small_profile_no_icon">
<?php
if(isset($_SESSION['profile_pic'])){
echo "<img src=images/".$_SESSION['profile_pic']."/>";
}
else{
echo '<img src="images/no-profile-pic-icon-5.jpg"/>';
}
?>
</div>
<div class="timeline_profile_name">
<?php
if(isset($_SESSION['username']) || isset($_SESSION['fullname']))
{
echo "<p>".$_SESSION["username"] . "<br/>" .$_SESSION['fullname']. "</p>";
}
?>
</div>
</div>
</div>
</div>
</section>
</main>
<?php
require "includes/footer.php";
?>
</body>
</html>