CGI - Common Gateway Interface |
> |
Skapa en fil med följande innehåll och spara som "test.txt"
This is a plain text file
Skapa en annan fil med följande innehåll och spara som "test.pl"
#!/usr/bin/perl
print "Content-type: text/plain\n";
print "\n";
print "This is a plain text file\n";
Prova här...