coreolyn has asked for the wisdom of the Perl Monks concerning the following question:
Fellow monks please help me to find the error of my ways in the following cgi script.
my $Requestor = $q->param('Requestor'); print $q->p("ChangeAdm::Review::Requestor = $Requestor"); my %Requestor_fields = ( RequestorID=>$q->param('RequestorID') +, Requestor=>$q->param('Requestor'), Department=>$q->param('Department'), Extention=>$q->param('Extention'), ); print $q->p("ChangeAdm::Review::Requestor_fields{Requestor} = +$Requestor_fields{Requestor}");
This produces the following output:
What is wrong with the way I am creating the hash?ChangeAdm::Review::Requestor = Jane Doe ChangeAdm::Review::Requestor_fields{Requestor} =
coreolyn Duct tape devotee.
|
---|
Replies are listed 'Best First'. | |
---|---|
RE: BrainPain-Help
by merlyn (Sage) on Aug 10, 2000 at 20:07 UTC | |
Re: BrainPain-Help
by merlyn (Sage) on Aug 10, 2000 at 19:47 UTC | |
by merlyn (Sage) on Aug 10, 2000 at 20:04 UTC | |
by tilly (Archbishop) on Aug 10, 2000 at 20:16 UTC | |
by coreolyn (Parson) on Aug 10, 2000 at 20:31 UTC | |
by tye (Sage) on Aug 10, 2000 at 20:37 UTC | |
by coreolyn (Parson) on Aug 10, 2000 at 20:07 UTC | |
by coreolyn (Parson) on Aug 10, 2000 at 20:03 UTC |