Web form to Appent to textfile

I’ve got this cute little problem. My boss want’s me to fix a web form, that when filled in appends information to a textfile with fields delimited by some nice character.

I’ve figured out that cgi scripts is the way to go, and I have found one rather nice example on the net. But then…
What to do?

  • How do I connect the cgi script to a HTML form?
  • How do I make the cgi run? Do I have to compile it, or do I just post it as it is?
    (I’m aware of that cgi scripts need certain permissions to be run)

Could anybody help me out?

Thanks.

take a look at this form. It is exactly what you’re looking for. i use it for sign ups on my site and it works beautifully. the sign up data gets appended to a text file with a delimiter character of my choice. then i can import this data into a database software and query it.

http://worldwidemart.com/scripts/formmail.shtml

Scroll down to BFormMail, it has all the options you need.

A basic understanding of any programming language should be enough to edit the form cgi code to work on your site.

if you hit a wall, lemme know an’ i’ll help you further…

you have to edit the cgi script a bit and upload it to the cgi-bin folder of your hosting service. The faq on the page supplies all the info you would need. then upload the form, with a line that includes a link to the cgi script.

go thru that website and you’ll understand…

Thnak you very much! I’ll take a look at it.