Just some answers in random order:

For activeperl you can use the (command-line) ppm command to install perl modules - and I don't think LWP is installed by default with activeperl (though I might be wrong about that - I haven't used activeperl in a while)

If you've got activeperl installed correctly, clicking on a *.pl file would start the program. You can also run programs directly from the command line by typing

perl path/to/perlfile.pl
on the command prompt (DOS window). Win98 might not be the best OS to develop on, though - windows XP or NT seems to be better - or use a UNIX derivate like linux of freebsd if you've got some experience with UNIX or can afford the time to learn.

The programs that output HTML code are probably meant to be run as CGI programs, so you would need a web-server configured to run CGI scripts - I don't think win98 has one, though IIS is installed distributed with some/most/all NT and XP installes. You can also try XAMPP - which has perl, the apache webserver (and PHP) in one package.

Also, if you want a perl module that can do webscraping you might like WWW::Mechanize - it's probably available via ppm.

Another hint: running "perldoc ModuleName" from the commandline should give you the docs for that module - though activeperl also installs some nice looking HTML versions of those docs. "perldoc perldoc" should give you more info.


In reply to Re: Begginer: Need help on implementing web Perl code on Windows by Joost
in thread Begginer: Need help on implementing web Perl code on Windows by Deib

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.