|
Web Design > CGI CGI allows you to create pages that will let a user send you information via a fill out form, search a database, and more. CGI is a standard for running programs via a web server. It specifies how the program and the Web must interact, therefore it acts as a Common Gateway Interface between them. For security reasons, we don't allow users to install CGI scripts on our server. However we have a number of useful scripts already available. They include scripts for receiving input from a form, searching text and more. Basic Form Fields All forms must start with the tag <form> and end with the tag </form>. Within the <form> tag you specify the CGI script it must use. For example, if you are using our generic-inbox script for a page on our Web server, your <form> tag would look like this: <form method=POST
action="/cgi-bin/generic-inbox.pl"> (For more about the specifics of the generic-inbox script, see its instructions.) « Back to Interactivity and Design |
