View Single Post
Old 01-05-2004, 07:26 PM  
icedemon
Confirmed User
 
Join Date: Jun 2003
Location: Lutz, FL
Posts: 1,022
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.
__________________
Clips4Sale.com
icedemon is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote