in reply to Re^2: CGI program
in thread CGI program

Pls tell me how request flows ?

web surfer sends request for as page
HTTP server looks at the request and if it involves external program, then invokes external perl program which is in some dir on the web server. Passes request parameters to this program
Perl program is executed and sends the result back to the request

Where does CGI come in picture in this process ?

Replies are listed 'Best First'.
Re^4: CGI program
by jethro (Monsignor) on Sep 23, 2009 at 16:27 UTC

    There:

    HTTP server looks at the request and if it involves external program, then invokes external perl program which is in some dir on the web server. Passes request parameters to this program