diff options
Diffstat (limited to 'cgi/ludo.pl')
-rwxr-xr-x | cgi/ludo.pl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cgi/ludo.pl b/cgi/ludo.pl new file mode 100755 index 0000000..6652c73 --- /dev/null +++ b/cgi/ludo.pl @@ -0,0 +1,13 @@ +#!/usr/bin/perl -wU +sleep(5); +print "Content-Type: text/html\nStatus: 200 OK\nCache-Control: +no-store\nPragma: no-cache\nConnection: close\n\n"; + +#The next line seems to make it a lot worse, but also without it it goes +wrong. +open (STDERR, ">&STDOUT"); + + +sleep(5); +print "<HTML><body> Test<br><br> Test2</body></html>\n"; + |