PHPForm mail help [closed]
- by tom
I have a PHP Form with two different fieldsets and about 4 labels within each.
The form mailer is one i found on a tutorial but I'm not sure how to set in all the variables. Should all the 'label for' names also be the name of the variable?
And is it easy to format with font-size etc.. once its been sent to an email for easy reading?
$course_title = $_POST['course_title'];
$course_date = $_POST['course_date'];
$course_code = $_POST['course_code'];
$course_fee = $_POST['course_fee'];
Say i have -
Personal Details labels with - first_name, address, postcode, dob.
Course Details labels with - course_title, course_date, course_code
Would this be correct and if not would anyone be able to help me out here.