use CGI; use strict; use warnings; my $query = new CGI({fungsil=>"123", foo=>"bar"}); print $query->param('fungsil'), "\n"; print $query->param('foo'); #### 123 #the value for parameter fungsil bar