in reply to Suggestions on study materials for modern perl web development
So what does that mean?
The answer is, it means nothing. CGI is perfectly useful, widely used, well supported, and a good introduction to web application programming.
In the old, old days programmers used CGI's HTML-printing methods to output their script's HTML, often in the main program code. This is indeed bad practice because of the lack of separation between program logic and output presentation, and since almost 20 years it has been recommended to use a different method to output your HTML - Text::Template or the Template Toolkit or Template::Tiny are good choices to explore.
But CGI is an exceptionally well-seasoned package for beginning web application programmers and for experienced developers who need a quick way to build simple interactive sites/pages, and you should not overlook it because of a remark that you read on-line, without understanding what that means. Here's a somewhat recent discussion on the subject.
Having said all that, in regard to the "modern" frameworks, I would say this:
In any case in your situation I would experiment with building a small test application in each of the above before hitching my wagon to one particular horse.
Hope this helps!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Suggestions on study materials for modern perl web development
by Discipulus (Canon) on Feb 02, 2016 at 12:10 UTC | |
by 1nickt (Canon) on Feb 02, 2016 at 12:31 UTC | |
by Discipulus (Canon) on Feb 02, 2016 at 13:02 UTC |