in reply to triggering a program in web server

The first question that comes to my mind is: why do you need two scripts for this? The public cannot read your cgi-script (assuming a correctly configured webserver and filesystem permsissions).

Having said that....

Simply call your 2nd program like any other system call ( system, exec, ...) from within your first script.

Be aware that if you do call an external program, you should:

  • read  perldoc perlsec carefully
  • definitely enable taint checking (perl -T)
    --
    bm