<form name="myForm" method="post" action="myPerl?starthere">
That's just a guess, but hopefully it will explain what I'm looking for.
Thanks!
- WJB
Your code would look something like this:
$command = $ENV{'QUERY_STRING'};
&someSubroutine if $command eq "foo";
&someOtherSubroutine if $command eq "bar";
Alternatively, you could even execute a different subroutine based on the contents of a hidden or non-hidden form field.
Dan