hi..
following error occured when I run it on web
Is Apache2::Request is not working in Apache2 ?
package test::showupload;
use Apache2::Request;
sub handler
{
my $req = shift;
my $r = Apache2::Request->new($req);
$r->content_type('text/html');
print <<EOF;
<html>
</html>
EOF
return Apache2::Const::OK;
}
1;
result --
nothing will appear on web
please give me solution...