-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredits.php
More file actions
68 lines (54 loc) · 1.58 KB
/
credits.php
File metadata and controls
68 lines (54 loc) · 1.58 KB
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
<?php
/*
(c) 2006 Reed Morse <firstname.lastname at gmail.com>
and Pau Santesmasses <firstname at lastname.net>
*/
if (!isset ($_SESSION)) session_start();
$_SESSION['action'] = 'about';
require("functions.php");
$news = news();
echo '
<div id="about">
<h2>Shorty '.$version.'
<span>August 23rd 2006</span>
<span>Copyright 2006 by Khoi Vinh and Reed Morse</span>
</h2>
<ul id="credits">
<li><h3>Concept and Design</h3>
<p class="name">Khoi Vinh</p>
<p class="site"><a href="http://www.subtraction.com">Subtraction.com</a></p>
</li>
<li><h3>Server Side Development</h3>
<p class="name">Reed Morse</p>
<p class="site"><a href="http://www.morsedesigns.com">morsedesigns.com</a></p>
</li>
<li><h3>Front End Development</h3>
<p class="name">Pau Santesmasses</p>
<p class="site"><a href="http://pau.santesmasses.net">pau.santesmasses.net</a></p>
</li>
<li><h3>Special Thanks to</h3>
<p class="name">Michael Simmons</p>
<p class="site"><a href="http://www.growinglogic.com">growinglogic.com</a></p>
</li>
</ul>
<p class="feedback">Feedback? write to us at <a href="http://somesite.com/">feedback@get-shorty.com </a></p>
<br />
<h2>Version History</h2>
<dl id="versionHistory">
'.$news.'
</dl>
<h2>System Requirements</h2>
<ul>
<li>A Web Server</li>
<li>PHP 4 or higher</li>
<li>MySQL 3.23 or higher</li>
<li>Apache 1.2 or higher</li>
</ul>
</div>
<script type="text/javascript" charset="utf-8">
// <![CDATA[
menu.unfold("aboutOption");
// ]]>
</script>
';
?>