Hi,
I developed a Perl script where we can click on a hyperlink and it calls another script with a parameter file.
print qq~ <a href="download.pl?file=$file">$file</a><br>
~;
I want to use a hyperlink calling a subroutine with this parameter instead an external script.
Is it a way to perform these actions in Perl?
Thanks a lot.
I developed a Perl script where we can click on a hyperlink and it calls another script with a parameter file.
print qq~ <a href="download.pl?file=$file">$file</a><br>
~;
I want to use a hyperlink calling a subroutine with this parameter instead an external script.
Is it a way to perform these actions in Perl?
Thanks a lot.