View Single Post
  #2 (permalink)  
Old 11-25-2008, 09:06 AM
DaveSawers's Avatar
DaveSawers DaveSawers is offline
WebProWorld Veteran
 
Join Date: Dec 2006
Location: Calgary, Alberta, Canada
Posts: 486
DaveSawers RepRank 3DaveSawers RepRank 3
Default Re: sending form data

You put the action coding inside feedback.php. First you get the form parameters using for example:

$name = $_POST["name"];
etc...

Where the name inside the $_POST is the name you gave to the input tag in your form.

You can then program as necessary to either e-mail it to yourself (using the PHP mail function for example) or save it on a database.

Not sure how much you know about PHP but the place to start learning is: PHP Tutorial

and if you are already familiar with some programming in PHP, full details of the language can be found at: PHP: PHP Manual - Manual
__________________
Dynamic Software Development
www.activeminds.ca
Reply With Quote