- or download this
sub getimage {
my $self = shift;
...
open ( IMAGE , $stuff->{image} ) or die "Screaming $!";
return join '', <IMAGE>;
}
- or download this
#!/usr/bin/perl -w
# foo.pm , to be executed by Apache
...
1;
- or download this
PerlModule Apache
PerlModule foo
...
SetHandler perl-script
PerlHandler foo
</Location>