Help for this page

Select Code to Download


  1. or download this
     /public_html/---+   
        |            |
    ...
                            |
                        Contact.pm
    
  2. or download this
    #!/usr/local/bin/perl
    use lib "/usr/home/bradcathey/applications/";
    ...
    
    use Contact::Contact;
    print "done<br />";
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    print "Content-type: text/html\n\n";
    print "main.pm<br />";
    1;
    
  4. or download this
    package Common;
    use strict;
    ...
       return "thanks for contacting us";
    }
    1;
    
  5. or download this
    package Main::Contact;
    use base qw( Main );
    ...
    print $msg."<br />";
    
    return 1;
    
  6. or download this
    main.pm
    contact.pm
    common.pm
    thanks for contacting us
    done