


If you want to deploy your applications on the Web without making any special demands of the user machine, you can redesign them to use a HyperText Markup Language (HTML) front end and the Common Gateway Interface (CGI) Internet communication standard. This option gives the most flexibility and platform independence, but it also requires the most work.
To deploy your applications on the Internet using HTML and CGI, your steps are:
1. Create an HTML interface to your application. (This way your application can be read directly by your users' browsers.)
2. Write a CGI program that will read CGI variables, perform the processing task or launch a separate program to do so, and generate HTML output from the results. This program, also known as a script, will be executed by your Web server.
4. Create a link to your CGI program
5. Configure your Web server software