in reply to Not Inciting a Holy War, but...

Well, I am currently developing a web application for our helpdesk. It relies on a MySQL-database and the frontend is done in PHP. The app is (at the moment) used for customers mail queries. Right now, I consider porting it to Perl, and this is what came my way: Just my .02 cents.

Replies are listed 'Best First'.
RE: Re: Not Inciting a Holy War
by Maclir (Curate) on Jun 19, 2000 at 05:58 UTC
    One comment I would make regarding:
    Developing in PHP is quiet easy: besides the already mentioned automatic variable creation, I find it very handy, that you can put your PHP code directly into the HTML page. You don't have to wrap all your HTML into print() calls.

    Check out Embedded Perl. This allows you to incorporate your perl program logic within your html.

    Like most Perl situations, there is more than one way to do it. If you have lots of program logic, and a small amount of html, look at CGI.pm; if it is the other way around, EmbPerl. Either takes advantage of the performance of mod_perl.

    I cannot comment on some of the more sophisticated solutions such as Mason.

    Ken