damian1301 has asked for the wisdom of the Perl Monks concerning the following question: (subroutines)

How is it done?!

Originally posted as a Categorized Question.

  • Comment on Subroutine accessible as yourdomain.com/cgi-bin/foo.pl?foo

Replies are listed 'Best First'.
Re: Subroutine accessible as yourdomain.com/cgi-bin/foo.pl?foo
by chromatic (Archbishop) on Oct 27, 2000 at 05:53 UTC
    Jellybean is based on this idea.

    The easiest thing to do is to create a hash of code refs. Pull out the query string or URL information or whatever, then use that data as the hash key.

    If there's a valid code ref there, call that subroutine. If not, show an error or do a default sub.

    For example, you could write:

    my %sub_refs = ( foo => \&do_this, bar => \&do_that, ); my $request = $ENV{QUERY_STRING}; if (defined(my $action = $sub_refs{$request})) { $action->(); } else { default(); }
    I'd do something more sophisticated in place of the query string scheme, as it's not terribly brilliant.
Re: Subroutine accessible as yourdomain.com/cgi-bin/foo.pl?foo
by merlyn (Sage) on Oct 27, 2000 at 07:53 UTC
    See Apache::Dispatch. Yup. The normal answer: "There's a CPAN module that does this." {grin}