Are there any of you using Perl scripts while you could be using a PHP script? I've had it with Perl. Way too much trouble man! First that chmoding business the whole time. And then if there is a problem you won't know what wrong!
I have a site that provides free form processors for webmasters. I'm going to dump the Perl scripts and use only PHP scripts from now on. Any one see a possible problem with this? Can Perl scripts do something that PHP script can't?






Turn on strict and warnings, use CGI::Carp to send fatal errors to the browser (or just open a filehandle so STDERR prints to a file). And of course using "perl -c" to at least make sure your script compiles before trying to run it in a browser.
Bookmarks