-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
64 lines (46 loc) · 1.77 KB
/
about.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
<?php
/*
Julien Roger
http://www.julienroger.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>About Spheres</h3>
<h4>About the Project</h4>
<p>Currently in private alpha, Spheres is a websote that models real-world geographic networks. Being in alpha stage, there are probably tons of bugs, speling mistakes, security vulnerabilities, coding inefficiencies, stylistic blunders, and who knows what else. Please <a href="mailto:[email protected]">let me know</a> if you find any - feedback and continued improvement is what makes good things great.</p>
<h4>About the Name</h4>
<p>Spheres? The idea was that the website would model places as informational spheres (like a 'sphere' of influence). The website needs a name change (spheres.com and thespheres.com are both taken), so feedback on naming/branding would be great too.</p>
<h4>About the Reason</h4>
<p>Pretty much just to learn MySQL/PHP/JavaScript. How's that been going? Great! I've learned a ton about web development, and stuff that I didn't expect to learn about, like <a href="http://en.wikipedia.org/wiki/Vincenty%27s_formulae">sweet ways to calculate distance</a>.</p>
<h4>About the Creator</h4>
<p>It was <a href="http://www.julienroger.com">me</a>.</p>
</div>
<div id="endmain">
</div>
<?php
include("sub-footer.php");
include("footer.php");
?>