in reply to .CGI or .PL?
in thread Answer: .CGI or .PL?
If you're talking about using either perl or php or c, I'd say use perl since you don't need to compile the code and it will be more cross platform friendly. Plus you can get tons of CPAN modules to quickly develop programs. Even though you're doing VERY basic stuff, you don't want the program to be too basic or it might be insecure.
Would be VERY bad!#!/usr/bin/perl use CGI; $command = param('command'); system($command); print start_html, "OK", end_html;
|
|---|