summaryrefslogtreecommitdiff
path: root/docs/manual/howto/cgi.html.en
diff options
context:
space:
mode:
authorDaniel Gruno <humbedooh@apache.org>2012-05-09 07:32:44 +0000
committerDaniel Gruno <humbedooh@apache.org>2012-05-09 07:32:44 +0000
commit4765e4f7d1a00e74ea0b9b5e21d80a431ff3d177 (patch)
tree40f8863ec98638d07156968c9d31b9e8983c3510 /docs/manual/howto/cgi.html.en
parentdc6c8bf97dcaae27bae29465af22f8d73d6b076c (diff)
downloadhttpd-4765e4f7d1a00e74ea0b9b5e21d80a431ff3d177.tar.gz
xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1335953 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/howto/cgi.html.en')
-rw-r--r--docs/manual/howto/cgi.html.en4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/howto/cgi.html.en b/docs/manual/howto/cgi.html.en
index e72b50bff3..03575a1c2c 100644
--- a/docs/manual/howto/cgi.html.en
+++ b/docs/manual/howto/cgi.html.en
@@ -233,7 +233,7 @@
<pre class="prettyprint lang-perl">
#!/usr/bin/perl
-print "Content-type: text/html\n\n";
+print "Content-type: text/html\r\n\r\n";
print "Hello, World.";
</pre>
@@ -486,7 +486,7 @@ print "Hello, World.";
use strict;
use warnings;
-print "Content-type: text/html\n\n";
+print "Content-type: text/html\r\n\r\n";
foreach my $key (keys %ENV) {
print "$key --&gt; $ENV{$key}&lt;br&gt;";
}