in reply to Combining PHP and Perl
I've recently been learning mod_perl, and working at moving my mindset over to it. It's not difficult, so much as a drastic mental switch. I've always avoided PHP, ASP, Coldfusion, Embperl, and other solutions of those types. I recently discovered Text::Template, and I love it. What's the difference? Dependence on the webserver.
With CGI Perl and Text::Template, I have command line scripts that are optimized to work with HTML browsers, but that function and are accessable without them.
When you convert to mod_perl, your documents cease to be apps, and the webserver stops being a document server, and instead becomes (in the words of merlyn), a programmable app.
Since I tend to prefer to keep things low level and accessable (ASCII forever!), this is a bit of a drastic switch. So when looking at PHP and Perl, think about how you want to view your documents.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Having Perl scripts work with and without a web browser
by princepawn (Parson) on Oct 13, 2000 at 16:56 UTC | |
by swiftone (Curate) on Oct 13, 2000 at 17:58 UTC |