what is cgi programming

后端 未结 6 1085
礼貌的吻别
礼貌的吻别 2021-02-05 06:16

What is exactly meant by CGI programming . If I am writing a cgi program in \'C\' ,

in that context , what does the \'cgi\' mean ?

Is the servelt environment is

6条回答
  •  天涯浪人
    2021-02-05 07:02

    Abbreviation of Common Gateway Interface, a specification for transferring information between a World Wide Web server and a CGI program. A CGI program is any program designed to accept and return data that conforms to the CGI specification. The program could be written in any programming language, including C, Perl, Java, or Visual Basic. CGI programs are the most common way for Web servers to interact dynamically with users. Many HTML pages that contain forms, for example, use a CGI program to process the form's data once it's submitted. Another increasingly common way to provide dynamic feedback for Web users is to include scripts or programs that run on the user's machine rather than the Web server. These programs can be Java applets, Java scripts, or ActiveX controls. These technologies are known collectively as client-side solutions, while the use of CGI is a server-side solution because the processing occurs on the Web server.

提交回复
热议问题