in reply to Re^2: how to assign hash element value to scalar?
in thread how to assign hash element value to scalar?

It may be that you want to explicitly show which element of the subroutine's arguments is assigned to which variable but if not, you could save some typing by doing

my ($userid, $password, $projectid, ... , $entered_by) = @_;

I hope this is of use.

Cheers,

JohnGG