Active Communications
Your Account
Support
Fri May 09 11:56:29 EDT  
    Internet Access Web Site Hosting Technical Support Signup NOW!!! 
 Home > Technical Support > Web Site Support > CGI How-To

 Technical Support
General Information  
Contact Support Team  
Access Numbers  
Network Status  

 How to?
Windows 2000/ME  
Windows XP  
Windows 95/98  
Windows NT  
Windows CE  
iMac  
Machintosh  
OS2/Warp  

 Web Site Support
Basics  
HTML Help  
CGI How-To  
Front Page  

 Hardware
Modems  
ISDN  

 FAQ's
Modems  
56K and V.90  
xDSL  


      

CGI (common gateway interface)

The common gateway interface (CGI) is a standard way for a Web server to pass a Web user's request to an application program and to receive data back to forward to the user. When the user requests a Web page (for example, by clicking on a highlighted word or entering a Web site address), the server sends back the requested page. However, when a user fills out a form on a Web page and sends it in, it usually needs to be processed by an application program. The Web server typically passes the form information to a small application program that processes the data and may send back a confirmation message. This method or convention for passing data back and forth between the server and the application is called the common gateway interface (CGI). It is part of the Web's HTTP protocol.

If you are creating a Web site and want a CGI application to get control, you specify the name of the application in the URL that you code in an HTML file. This URL can be specified as part of the FORMS tags if you are creating a form. For example, you might code:

<FORM METHOD=POST ACTION=http://www.mybiz.com/cgi-bin/formprog.pl>
And the server at "mybiz.com" would pass control to the CGI application called "formprog.pl" to record the entered data and return a confirmation message. (The ".pl" indicates a program written in Perl but other languages could have been used.)

The common gateway interface provides a consistent way for data to be passed from the user's request to the application program and back to the user. This means that the person who writes the application program can makes sure it gets used no matter which operating system the server uses (PC, Macintosh, UNIX, OS/390, or others). It's simply a basic way for information to be passed from the Web server about your request to the application program and back again. Because the interface is consistent, a programmer can write a CGI application in a number of different languages. The most popular languages for CGI applications are: C, C++, Java, and Perl. An alternative to a CGI application is Microsoft's Active Server Page (ASP), in which a script embedded in a Web page is executed at the server before the page is sent.

Feedback | Privacy | Legal | About | Contact
©2000 Active Communications, Corp. All rights reserved.