fil_b Posted May 28, 2010 Posted May 28, 2010 (edited) Hi All Can you help We have been using Google Docs for filling in online forms, to user internally to collect information. But after an e safety course we need to look at different ways of creating and using these forms Any one help or advise on how they have done thieir forms so we can host on a web server internally Thanks Phil Edited May 28, 2010 by fil_b
CallMeFred Posted May 28, 2010 Posted May 28, 2010 Could you give a bit more info? There are lots of ways of doing this. Just curious - are Google docs out of the question because of an eSafety issue?
danrhodes Posted May 28, 2010 Posted May 28, 2010 You can use PHP to collect and process input from end users. Put this in a HTML document - Email: Message: Create a new document using notepad or Winsyntax ( a good program for php scripting) and enter the following, save it as sendmail.php <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "Feedback Form Results", $message, "From: $email" ); header( "Location: http://www.example.com/thankyou.html" ); ?> From these two basic bits of code you should be able to sort something out. D
fil_b Posted May 28, 2010 Author Posted May 28, 2010 (edited) one of the issues is where google docs hosted?? it is not always in the UK k under DP you are not allow to send personal information outside the EU without permission, agreements and safe harbor agreements. Plus you need parental permission if you are sending personal information off site. We use it for collecting exclusion information and store this as a google doc so its all central in one doc, for one example. Will look at the PHP - Thanks Edited May 28, 2010 by fil_b
danrhodes Posted May 28, 2010 Posted May 28, 2010 NP let me know if you need any more advice on the php side.
fil_b Posted May 28, 2010 Author Posted May 28, 2010 cheers dude going to put this into html doc and see what happens
danrhodes Posted May 28, 2010 Posted May 28, 2010 You will need to have it stored on a server that is configured for php scripting also for it to work, you cannot just run it from the hard drive on your computer as it will not work. D
fil_b Posted May 28, 2010 Author Posted May 28, 2010 we already host our website using moodle - create the docs there and expertiment
CallMeFred Posted May 28, 2010 Posted May 28, 2010 Adobe livecycle does a good job of this as well (but costs). This page has some interesting info about data security and Google docs.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now