our approach
|
new tutorials
|
contact us
MySQL Basics In Pictures
Starting
Administration
Tables
Queries
Security
Web
Type:
cd programs
then press
ENTER
.
Type:
cp random.pl /usr/lib/cgi-bin/random.cgi
then press
ENTER
.
This command string will copy the
random.pl
program to the
/usr/lib/cgi-bin
directory, and at the same time rename it to
random.cgi
.
The
cgi-bin
directory is where you'll place programs, or "scripts," to be run by the Apache web server.
Regardless of what language the program is actually written in (it could be Perl, PHP, C++, or another language),
random.cgi
is referred to as a CGI script.
CGI stands for Common Gateway Interface, a common way to run scripts of different languages on a Web server.
The Apache Web server program on your Linux computer will run the scripts in the
cgi-bin
directory. For instance, the
random.cgi
script is now found at:
http://localhost/cgi-bin/random.cgi
<< BACK
NEXT >>