Forum Moderators: open
What you're asking is fairly simple to do in Perl and PHP (and asp and coldfusion too) and you may want to check out Perl's abilities to capture input data and use it to write to a text file (not a word document, but a text file that can be read by Micro$oft Word if needed).
Here's a supremely oversimplified sample script:
open (FILEHANDLE, ">test.txt") or die "no such file";
print FILEHANDLE "Hello world";
close (FILEHANDLE);
The "hello world" text would be captured from a form input on your webpage and inserted into the test.txt file.
Check with the Perl folks to see if they can help you.
Good luck,
Patrick
PS, I'd be interested to see if it IS possible to write to external files using javascript, especially if its concise code-wise ala Perl.