I'd backup one step. If you were using anything other than a Win OS, I'd say use CPAN (that is where your link goes). CPAN is THE 'official' place for all things Perl. However, since you are on a Win OS, I'd use
. They do a very good job of providing a Perl port for the Win OSes with a few convinient tools thrown in. Their Perl port is available as a MSI file, you double-click, answer the typical installer questions and perl is installed. They also ship in that MSI all the html docs for core Perl.
See the downloads section in the lower right of their front page. They ask for a little registration info before the download, but, in my experience they are very conservative with the use of that info.
Do you need a compiler? NO.
Perl uses as interpreter(comes in the MSI). Your code resides on your system as text files. Each time your code is run, a text file(the code) is passed to the interpreter and compiled on-the-fly and then run. Yes, this does make Perl a little slower than most compiled languages. There are a few ways around that problem, but that is beyond what you'd need to know now.
...what else is necessary for the script to work???
I am not familiar with the script. If it is a peice of CGI, then you'll need to have a web server running on the machine to server the CGI. That is also fairly easy. If you are married to the MS IIS, then check out the IIS docs about how to run CGIs. Otherwise, I'd suggest going to
and downloading apache. In less than an hour, you can setup apache and have CGIs running. See that FAQs tab at the top of this forum. 'hope this helps
If you are new to Tek-Tips, please use descriptive titles, check the FAQs, and beware the evil typo.