ЭЛЕКТРОННАЯ БИБЛИОТЕКА КОАПП |
Сборники Художественной, Технической, Справочной, Английской, Нормативной, Исторической, и др. литературы. |
19.3 Simplest CGI ProgramHere's the source code for your first CGI program; it's so simple, it doesn't even need to use the CGI.pm module: #!/usr/bin/perl -w # howdy--the easiest of CGI programs print <<END_of_Multiline_Text; Content-type: text/html <HTML> <HEAD> <TITLE>Hello World</TITLE> </HEAD> <BODY> <H1>Greetings, Terrans!</H1> </BODY> </HTML> END_of_Multiline_Text Every time this program is called, it displays exactly the same thing. That's not particularly interesting, of course, but we'll spice it up later. This little program contains just one statement: a call to the The first part in that long string is arguably the most important: the
First make sure your program runs correctly from the command line. This is a necessary but not a sufficient step to making sure your program will run as a server script. A lot of other things can go wrong; see the section on "Troubleshooting CGI Programs" later in this chapter. Once it runs properly from the command line, you need to get the program installed on the server machine. Acceptable locations are server-dependent, although /usr/etc/httpd/cgi-bin/ and its subdirectories are often used for CGI scripts. Talk to your friendly system administrator or webmaster to make sure. Once your program is installed in a CGI directory, you can execute it by giving its pathname to your browser as part of a URL. For example, if your program is called howdy, the URL might be http://www.SOMEWHERE.org /cgi-bin/howdy. Servers typically define aliases for long pathnames. The server at www.SOMEWHERE.org might well translate cgi-bin/howdy in this URL to something like usr/etc/httpd/cgi-bin/howdy. Your system administrator or webmaster can tell you what alias to use when accessing your program. |