Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
or something like that.What I'm looking at doing is something on the order of:print '<form action="someCGI.cgi">';
and then eithersub mySub{ (my code) }
orprint '<form action=&mySub>';
My syntax probably needs work, but I could swear I got this to work before - just can't remember how. Can anyone either give me a hint on how to do this, or if there's a better way?Thanks.print start_form(-action=>&mySub);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: call subroutine from cgi form
by mr_mischief (Monsignor) on Aug 13, 2008 at 19:46 UTC | |
by blazar (Canon) on Aug 13, 2008 at 20:49 UTC | |
|
Re: call subroutine from cgi form
by chromatic (Archbishop) on Aug 13, 2008 at 19:31 UTC | |
|
Re: call subroutine from cgi form
by trwww (Priest) on Aug 14, 2008 at 00:18 UTC |