in reply to Embedding Perl in HTML

Yes. There are a bunch of different ways to do this. In fact, one of the problems I had when in your situation, was deciding which competing technology to use.

I would start by downloading apachefriends with modperl, and just study their basic install a bit to get a feel for how things work:

"Many people know from their own experience that it's not easy to install an Apache web server and it gets harder if you want to add MySQL, PHP and Perl. XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, extract and start." (From the aachefriends web site)

You might then want to have a look at Survey of Surveys on HTML Templating systems, to see a comparison of all the various ways to get this done.

Personally, I favor mason, which comes with a nicely built sample application that includes db connectivitiy, if I recall correctly. Get that installed over your apachefriends install, and you are off to the races.

Good luck.

Replies are listed 'Best First'.
Re^2: Embedding Perl in HTML
by Nalina (Monk) on Jul 13, 2005 at 11:57 UTC
    Thanks for the reply. but i don't have apache, i have IIS installed on windows 2000 professional. Is it manditory to install apache to embed perl in HTML? Can't it be done with IIS?
      See my comment below. There probably is a way to get this to work, but I think it would be easier if you move to apache: especially because there are more people willing to help you on forums and that sort of thing.

      The most "plug and play" solutions I know with web-perl for beginners usually involve apache, and this includes on windows (which is my setup). Apachefriends is pretty easy to setup.

      If there is an "easy" way to get perl to play nicely with IIS I would be interested in learning about this as well.

      Update: perl on iis is definitely doable, but I stand by my judgement that ultimately this will be easier if you switch to apache.