Help for this page

Select Code to Download


  1. or download this
    %q_and_a = ( '105' => 'How do I use Netscape',
                 '111' => 'How do I listen to MP3s',
                 '119' => 'How can I send email with attachments'
                );
    
  2. or download this
    foreach (keys(%q_and_a)) {
        print "Q: <a href=answers.cgi?q=$_>$q_and_a{$_}</a>\n";
    }
    
  3. or download this
    Q: <a href=answers.cgi?q=119>How can I send email with attachments</a>
    Q: <a href=answers.cgi?q=111>How do I listen to MP3s</a>
    Q: <a href=answers.cgi?q=105>How do I use Netscape</a>