Your question has already been adequately answered. However I feel the need to interject. please use CGI;. Any attempt to roll your own query string parser is (usually) wraught with peril. It doesn't make you a "lesser" developer to use the CGI module, it means you're smart enough to use what has been tested EXTENSIVELY and many monks rely on. There is nothing wrong at all with plopping open the CGI.pm file and trying to grok it, if you really wanna understand what's up with it.

Also

use strict; use warnings; use CGI::Carp::FatalsToBrowser();
Check up on the CGI::Carp deal. strict and warnings will help prevent silly mistakes, and make your code more maintable (IMHO).

Again not trying to sound like a evangelist here, but I made the same mistakes when I started perl, and I wish someone had taken the time to tell me these things.


Grygonos

In reply to Re: search for exact word only by Grygonos
in thread search for exact word only by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.