Browse Source
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@604 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.2
3 changed files with 36 additions and 1 deletions
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/perl |
||||
|
||||
my $s = $ENV{$ENV{"QUERY_STRING"}}; |
||||
|
||||
printf("Content-Length: %d\r\n", length($s)); |
||||
print "Content-Type: text/plain\r\n\r\n"; |
||||
|
||||
print $s; |
@ -0,0 +1,3 @@
|
||||
<?php |
||||
echo $_SERVER[$_GET["var"]]; |
||||
?> |
Loading…
Reference in new issue