- 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'
);
- or download this
foreach (keys(%q_and_a)) {
print "Q: <a href=answers.cgi?q=$_>$q_and_a{$_}</a>\n";
}
- 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>