Quote:
Originally posted by icedemon
Code:
#!/usr/bin/perl
print "Content-type: text/plain\n\n";
if ($ENV{'QUERY_STRING'}) {
open(FILE, ">>file.txt") || die (print "$!\n");
print FILE $ENV{'QUERY_STRING'} . "\n";
close(FILE);
}
Here is some perl code you can use.
|
Many thanks I'll have a go at getting this to work
