View Single Post
  #3 (permalink)  
Old 02-28-07, 06:36 PM
curbview.com's Avatar
curbview.com curbview.com is offline
Junior Code Guru
 
Join Date: May 2006
Posts: 555
Thanks: 0
Thanked 0 Times in 0 Posts
Well,

First you will need a CGI (Perl/php) to parse form data. Google will be your friend.
Next output form data to a file:

Perl Based code.
open(OUT,">formdata.txt");
print OUT "FNAME $FORMDATA[0]\tLNAME $FORMDATA[1]\tEMAIL $FORMDATA[2]\n";
print "Thanks for submitting our form.<p>";
close OUT;
Reply With Quote