-
Notifications
You must be signed in to change notification settings - Fork 2
/
help.php
28 lines (25 loc) · 947 Bytes
/
help.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
<?php
include ('./config.php');
include ('./include/my_functions.php');
include ('./include/common.php');
printHeader('about');
?>
<div style="text-align:center"><br><br>
<table class="menu" style="width:70%">
<tr><th class="menu"><h2>PHPki HELP FILES</h2></th>
<tr><td class="menu" style="padding: 1em;">
<h3><a href="<?php print $config['base_url'] ?>help/PKI_basics.html">
» PKI and E-mail Encryption - A Brief Explanation</a></h3>
<h3><a href="<?php print $config['base_url'] ?>help/cacert_install_ie.html">» Installing
Our Root Certificate For Use With Outlook and Outlook Express</a></h3>
<h3><a href="<?php print $config['base_url'] ?>help/usercert_install_ie.html">» Installing
Your Personal E-mail Certificate For Use With Outlook and Outlook
Express</a></h3>
<h3><a href="<?php print $config['base_url'] ?>help/glossary.html">» Glossary</a></h3>
</td></tr>
</table>
<br><br>
</div>
<?php
printFooter();
?>