blob: 4eb17e3ccb1a6722287f091b359e87a94f0dff7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<h1>cflip.net forum<sup style="font-size: small;">beta</sup></h1>
[<a href="/">Home</a>]
[<a href="/search.php?type=thread&sort=lr">All Threads</a>]
[<a href="/search.php?type=post&sort=cd">All Posts</a>]
[<a href="/create_thread.php">Create a thread</a>]
<span style="float:right;">
<?php
if (isset($_SESSION['signed_in'])) {
echo '[<a href="viewuser.php?id='. $_SESSION['user_id'] .'">' . $_SESSION['user_name'] . '\'s Profile</a>] [<a href="includes/signout_inc.php">Log out</a>]';
} else {
echo '[<a href="signin.php">Sign in</a>] or [<a href="register.php">Register an account</a>]';
}
?>
</span>
|