-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.php
38 lines (36 loc) · 1.13 KB
/
credits.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
<?php
include_once('header.php');
?>
<h2>gtd-php Credits</h2>
<table summary='development team'>
<caption>Development Team</caption>
<thead>
<tr>
<th>Who</th>
<th>What</th>
</tr>
</thead>
<tbody>
<tr><td><a href="mailto:sjrey@users.sf.net?subject=gtd-php">Serge Rey</a></td><td>Project Founder</td></tr>
<tr><td><a href="mailto:skorvek@gtd-php.com?subject=gtd-php">Scott Jason Korvek</a></td><td>Database and Enhancements</td></tr>
<tr><td><a href="http://burnettsonline.org/">Josh Burnett</a></td><td>CSS</td></tr>
<tr><td><a href="http://eclectictech.net/">Criss Ittermann</a></td><td>Debugging & Documentation</td></tr>
<tr><td><a href="http://">Andrew Smith</a></td><td>php and javascript</td></tr>
</tbody>
</table>
<table summary='contributors'>
<caption>Contributors</caption>
<thead>
<tr>
<th>Who</th>
<th>What</th>
</tr>
</thead>
<tbody>
<tr><td><a href="http://jason.br.com/">Jason Brown</a></td><td>CSS and design</td></tr>
<tr><td><a href="mailto:halonine@users.sourceforge.net?subject=gtd-php">Mike Kober</a></td><td>CSS (IE Savior)</td></tr>
</tbody>
</table>
<?php
include_once('footer.php')
?>