I have a simple perl hello world script in my page
The script is as follows.
#!/usr/bin/perl
print "Content-Type: text/html \n\n";
print "Hello Perl World";
But it doesn't work.
It throws a Internal Server Error.
Can anybody help???
Thanks

