> 
> Execute ({inputfile => $filename, param => $href }) ;
> 

param needs a array ref, so you should write

Execute ({inputfile => $filename, param => [$href] }) ;

or simpler

Execute ($filename, $href) ;

and in your page access it as

$param[0]

Gerald


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to