-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhelp.php
More file actions
55 lines (40 loc) · 919 Bytes
/
help.php
File metadata and controls
55 lines (40 loc) · 919 Bytes
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
<?php
/*
Julien Roger
http://www.julienroger.com
julienroger@gmail.com
November 24, 2011
Last updated: November 24, 2011
*/
include("includes/db.php");
include("includes/session.php");
session_start();
// If the user has not logged in
if(!isLoggedIn())
{
$logged_in = 0;
header('Location: index.php?redirect='. basename($_SERVER['PHP_SELF']) . "?mid=" . $member_mid);
die();
}
else
$logged_in = 1;
// Page content follows
include("top-header.php");
?>
<title>Spheres</title>
</head>
<?php
include("top-nav.php");
include("sub-nav.php");
?>
<div id="main">
<h3>Help & Support</h3>
<p>Since Spheres is still under development in its Private Alpha stage, there will certainly be bugs, glitches, and other errors. Please feel free to report these and help improve Spheres.</p>
<p>Thanks, <br />- Julien</p>
</div>
<div id="endmain">
</div>
<?php
include("sub-footer.php");
include("footer.php");
?>