-
Notifications
You must be signed in to change notification settings - Fork 69
/
footer.php
22 lines (18 loc) · 865 Bytes
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
// display 'Powered by' info in bottom right of each page //
echo " <tr class=hide><td height=4% class=misc_items align=right valign=middle scope=row colspan=2>Powered by <a class=footer_links
href='http://httpd.apache.org/'>Apache</a> ±<a class=footer_links href='http://mysql.org'> MySql</a>
±";
if ($email == "none") {
echo "<a class=footer_links href='http://php.net'> PHP</a>";
} else {
echo "<a class=footer_links href='http://php.net'> PHP</a> • <a class=footer_links href='mailto:$email'>$email</a>";
}
echo " •<a class=footer_links href='http://timeclock.sourceforge.net'> $app_name $app_version</a></td></tr>\n";
echo " </table>\n";
echo " </td>\n";
echo " </tr>\n";
echo "</table>\n";
echo "</body>\n";
echo "</html>\n";
?>