Urgent help PHP form.

D

design2

Guest
Ok, so I have little if any knowledge with the programming language php - only having created small enquiry forms. Now I have a client that needs a job order form with a little more function than having solely contact details and a big enquiry text area.

The form I created in HTML is located at http://www.ebesign.co.nz/projects/justfixit/job_order_form.html
and has used javascript to validate the fields against spammers etc but now I am looking to process it all in a php form using the mail function.

Basically I want my form to gather all the information including check boxes, drop down menu's and to email it to my client - simple enough request but I don't know the code and cannot find a worth while tutorial or php resource ( most out there are simple forms without drops downs, etc )

Any help, suggestions, or recommendations?

Much Appreciated netizens.
Liam
 
Joined
Oct 26, 2006
Messages
467
Reaction score
7
Points
18
Email me at eric[at]sitesbye.com and I can help you with your form. Please put the subject as PHP form, so my spam killer doesn't kick the email.
 
Joined
Jun 6, 2006
Messages
1,153
Reaction score
94
Points
48
Your Mac's Specs
MacBook 2.0GHz White, 512MB RAM, 60GB HDD
Drop downs are like any other HTML form element - they have an identifier and a value. Just look in the $_POST array and they'll all be there, with current values filled in.
 
Joined
Oct 26, 2006
Messages
467
Reaction score
7
Points
18
http://www.phpfreaks.com is good.

Here is the drop down from code from http://www.twinforksclinic.com.
$qty1 = $_REQUEST["qty1"];
$heartworm = $_REQUEST['heartworm'];
$qty2 = $_REQUEST["qty2"];
$fleatick = $_REQUEST['fleatick'];
$qty3 = $_REQUEST["qty3"];
$revolution = $_REQUEST['revolution'];

The $qty1 is the 1st drop down and so on. The "qty1" is the name of the drop down menu on the form.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top