On 31/01/2011, at 04:40, Tyler Fryman wrote: > [www@www1 perl]$ cat first.pl > #!/usr/bin/perl > print "Hello world!!\n";
The CGI *MUST* include at least one header entry, followed by "\r\n\r\n": ================== #!/usr/bin/perl print "Content-type: text/html\r\n\r\n"; print "Hello, World."; ================== -- Octality http://www.octality.com/
_______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
