Since nobody really has yet answered this, you can create dynamic web pages with pretty much any programming language. You can do fine without Javascript. What you will be doing is generating the HTML source code with Perl (that is, outputting blocks of HTML code and using logic to fill some parts of it).
You may also have scripts or functions that, say, take a form submission and store it into a database. (You may need to learn SQL for this.) This is very common in web applications. The database provides persistence and generally stores the values you may need to generate your HTML page.
In addition, you need a general understanding of how the HTTP protocol works, and how your library or framework of choice (CGI.pm is perhaps the lowest common denominator, and rarely the most pleasant one to use) abstracts it. A templating language will come in handy for the HTML generation part, and most frameworks already provide one.
Still, start small. Make a form that posts to a script that calculates some values based on the input. This is perhaps the "interactive HTML hello world" and is useful to familiarise yourself with how it works.
In reply to Re: Web-designing using PERL
by Anonymous Monk
in thread Web-designing using PERL
by Arthes
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |