Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is a noob question.

I have a mostly "static" web site with no server-side code and just a little JavaScript. Now I would like to add a contact form. I do not care how I get the contact form data (so just writing this data to a text file in the server will be ok).

What is the simplest solution for this problem? How do people usually handle this?

I believe I can add some server-side code (PHP or something) to handle the form (and write the form data to a file, for instance) but I would prefer a client-side solution.

share|improve this question

2 Answers

up vote 3 down vote accepted

Use an external tool, they are commonly referred to as "formmailer". You basically submit the form to their server, and they send the form contents via mail to you.

If you don't want that, you have to do something server-sided: Storing data on the server, without having a server side program that accepts the data from the client, is just not possible.


You could install CouchDB and interface that from Javascript :) Everyone could use that then, too :)


The most easy PHP script that stores POST data on your harddisk:

<?php file_put_contents('/path/to/file', serialize($_POST) . "\n", FILE_APPEND); ?>
share|improve this answer
Is there other options of contact form handling w/o coding? Suppose I do not have to get the data as an email. – Michael May 22 '12 at 14:21

You can use Google Drive and create form with required fields. and embed code (which will be iframe) in your static web page. You will be able to get submitted data in spreadsheet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.