Jump to content

Recommended Posts

Posted (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 by fil_b
Posted

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?

Posted

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

Posted (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 by fil_b
Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...