ah... this sever reads perl as *.pl
Edit:
sorry, should have seen that.
Edit:
If your script was pure perl it might run as a *.cgi file. This mainly would consist of using no modules like cgi.
eg:
Code:
#!/usr/bin/perl
$text = 'hello world';
print "$text\n";
If i can offer any advice it would be this.
The ActivePerl user guide is the best bet for learning purposes. It doesn't just follow one methode or style of programing in its examples, but many and all.
If you have ActivestatePerl installed : %root%/html/index.html
Also as I said earlier, "use STRICT;" when programing locally. As your program grows and you forget to define variables you will notice the need for it.
I preffer the perlish approach, rather than php's way of scripting. But perl can only be stored on the server and run on the server. php can be written in to *.html files and *.php, but still only runs on the server.
You can pm me if you need any further help. I am not a pro, but am willing to help if i can.