Jeff,

I want to print out the value of $name, Jerry.

Thanks,

Jerry

Jeff 'japhy/Marillion' Pinyan wrote:
> 
> On Aug 29, Jerry Preston said:
> 
> >  name = "Jerry";
> 
> You mean
> 
>   $name = "Jerry";
> 
> >  foreach $key ($query->param) {
> >    undef $check;
> >    $check = $1 if $key =~ "name";
> 
> (I think) you mean
> 
>   $check = $1 if $key =~ /($name)/;
> 
> >    if( $check ) {
> >      print "name  key *$key* check $1 *<BR>";
> >    }
> >  }
> 
> What are you trying to get the code to do?
> 
> --
> Jeff "japhy" Pinyan      [EMAIL PROTECTED]      http://www.pobox.com/~japhy/
> RPI Acacia brother #734   http://www.perlmonks.org/   http://www.cpan.org/
> ** Look for "Regular Expressions in Perl" published by Manning, in 2002 **

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to