diff options
Diffstat (limited to 'doc/examples/cgi-bin/simple.cgi')
-rw-r--r-- | doc/examples/cgi-bin/simple.cgi | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/examples/cgi-bin/simple.cgi b/doc/examples/cgi-bin/simple.cgi deleted file mode 100644 index 421924c3..00000000 --- a/doc/examples/cgi-bin/simple.cgi +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | |||
4 | |||
5 | echo -ne "Content-type: text/html\r\n\r\n" | ||
6 | |||
7 | echo -e "<HTML>\n" | ||
8 | echo -e "<BODY>\n" | ||
9 | |||
10 | echo -e "THis is a simple cgi file\n" | ||
11 | echo -e "$QUERY_STRING" | ||
12 | echo -e "</body>" | ||
13 | echo -e "</html>" | ||
14 | |||