in reply to What does $query->param() do?

The odds are good that this is code from a module that has, somewhere, the line use CGI;.. check out the documentation on the CGI module. If this is the case, and $query is a CGI object (look for my $query = new CGI; or something similar in your code) then this line is taking a web form parameter called 'fungsi1'.

Of course I could be wrong..