|
|
Get form values data using GET and POST method in perl script programing - Perl
|
Views : 2195
|
|
Tagged in : Perl
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Get values passed along with the url using GET Method
sub populateQueryFields {
%queryString = ();
my $tmpStr = $ENV{ "QUERY_STRING" };
foreach $part (@parts)
( $name, $value ) = split( /=/, $part );
}
}
&populateQueryFields;
$lastName = $queryString{ "lname" }; |
|
By kalai, On - 2009-01-08 |
|
|
|