andy's php projects
Script and site usage:
All of the scripts on this site are provided free for non-commercial, personal or non-profit use. If you wish to use any of these in a commercial system, please refer to the payment plan.

Support:
Support for each of the scripts is given, free of charge, on the message board. Each script has its own message board which can be accessed by clicking on the 'project forum' link (beneath the description of each project).


Proudly hosted with Dreamhost

Save $20 when signing up for Dreamhost by using the promo code amnuts20


If you find these scripts useful to you, appreciate the free support, or are just an all round nice person, then why not donate a little dosh to encourage me to continue? Every little helps!

Zend Certified Engineer logo


Man Page Lookup

This will allow you to view man pages on your unix/linux system through a web browser. It formats correctly, and auto-links email addresses.

class.manpagelookup.php

14.2kb in size
last modified Mar 18, 2011 at 8:35am
7160 views, 7062 downloads

test.manpagelookup.php

<html>
<head>
    <title>Man Page Lookup</title>
    <style type="text/css">
    <!-- //
        a
        {
            font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
            font-size : 11px;
            text-decoration: none;
        }
        a:hover
        {
            text-decoration: underline;
        }
        A:link        { text-decoration: none; COLOR: #054281; }
        A:visited    { text-decoration: none; COLOR: #054281; }
        A:active    { text-decoration: none; COLOR: #054281; }
        P          { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; }
        TD         { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; }
        TR         { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; }
        UL         { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; }
        LI         { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; }
        FORM       { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; }
        INPUT      { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;}
        SELECT     { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;}
        OPTION     { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; }
        TEXTAREA   { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;}
    // -->
    </style>
</head>
<body>

<?php

    
require('class.manpagelookup.php');
    
$mp = new ManPageLookUp();
    
$mp->useTimer(true);
    
$mp->useCaching(true);
    
$mp->setCacheDir(dirname(__FILE__) . '/cache/');
    
$mp->displayManPage();
    
$mp->displayVersion();

?>

</body>
</html>
1.48kb in size
last modified May 6, 2006 at 1:55pm
5735 views, 6123 downloads
list all projects :: this project's forum :: script in action
added Sep 19, 2002 at 2:49pm :: updated Jan 2, 2004 at 5:43pm :: 2 files :: 37506 views

© Andrew Collington, 2002-2007.