Hello all,
First, i'd like to thank everyone who responded to my previous posts regarding setting up an SMTP server for my php form. I ended up figuring it out and my form is up and functioning, sending me formatted html emails flawlessly.
But... step two in my process, is now i have to figure out how to pass my checkbox values into the email...
I had previously had the checkboxes commented out while i was trying to just get the form working, but now that i have done that i have to figure out these checkboxes.
my form can be seen here....
http://www.adobedayevents.com/project_request/project_request.php
all the values (other than the checkboxes) are passing to my send_request.php page, and are all sending to my email address formatted. But now i need to figure out how to take my checkbox data and pass it through the send_request.php page and send in the email.
Here is the checkbox...(only posting checkbox because the form is huge and i alredy got everything else working...)
Code: <label><strong>Company/Customer Name:</strong></label><br/>
<input type="text" name="company_customer_name" /><br/><br/>
<label><strong>Please indicate the materials required (check all that apply):</strong></label><br/>
<input type="checkbox" name="check_1" value=".html email invitation" /> <label><strong>.html email invitation</strong></label><br/>
<input type="checkbox" name="check_2" value="agenda" /> <label><strong>agenda</strong></label><br/>
<input type="checkbox" name="check_3" value="registration site (confirmation email, (2) reminder emails" /> <label><strong>registration site (confirmation email, (2) reminder emails</strong></label><br/>
<input type="checkbox" name="check_4" value="Thank You Emails" /> <label><strong>"Thank You" Emails</strong></label><br/>
<input type="checkbox" name="check_5" value="Signage" /> <label><strong>Signage</strong></label><br/>
<input type="checkbox" name="check_6" value="Email Broadcasts" /> <label><strong>Email Broadcast(s)</strong></label><br/>
<input type="checkbox" name="check_7" value="Report prepupload" /> <label><strong>Report prep/upload</strong></label><br/><br/>
here is where all my values from the all the text fields and dropdowns are pulled in...
Code: <?PHP
$to = "rkettering@jpenterprises.com";
$nameto = "Randy Kettering";
$from = "admin@adobedayevents.com";
$namefrom = "Adobe Day Events Administrator";
$subject = "Project Request";
$field_mark_manager = $_POST['1_mark_manager'];
$comp_cust_name = $_POST['company_customer_name'];
//retrieve checkbox variable here
$icf_source_code = $_POST['icf_source_code'];
$lead_code = $_POST['lead_code'];
$product_interest = $_POST['product_interest'];
$add_product_interest = $_POST['additional_product_interest'];
$number_of_units = $_POST['2_units_number'];
$purchase_timeline = $_POST['3_purchase_timeline'];
$industry = $_POST['4_industry'];
$employee_range = $_POST['5_employee_range'];
$revenue_range = $_POST['6_revenue_range'];
$due_date_month = $_POST['7_month'];
$due_date_day = $_POST['8_day'];
$due_date_year = $_POST['9_year'];
$additional_comm = $_POST['additional_comments'];
$message = "Field Marketing Manager: $field_mark_manager<br />
Company/Customer Name: $comp_cust_name<br />
ICF Source Code: $icf_source_code<br />
Lead Code: $lead_code<br />
Product Interest: $product_interest<br />
Additional Product Interest: $add_product_interest<br />
Number of Units: $number_of_units<br />
Purchase Timeline: $purchase_timeline<br />
Industry: $industry<br />
Employee Range: $employee_range<br />
Revenue Range: $revenue_range<br />
Due Date: $due_date_month $due_date_day, $due_date_year<br />
Additional Comments: $additional_comm";
authSendEmail($from, $namefrom, $to, $nameto, $subject, $message);
?>
as you can see, first im pulling in all the variables from the form. Then, $message echoes them all out so that they are all on their own line. Can anybody help me figure out how to get the checkbox data to pass and post into the email? i can post a screenshot of how the email looks when its sent if that will help anyone understand better.
Are the 'name' values on my checkboxes correct? or should they all be named the same?
Any help would be greatly appreciated!!
Randy Kettering
how do i make a string??
hey guys,can someone please tell me how to put data from the glob function into a stringthanks
generating random codes
Hi guys n gals,I have a requirement to generate 250,000 unique codes...These codes are for a tracking service and will be stored in the database (table field has a unique index).Now I am working on
session checking in page load
hai all
I need some help with the IF command...
I have a large number of images in one section of my website with the .jpg format. I'm adding a bunch of new images thanks to a new camera, but in using Picasa to bulk export smaller images sizes,
user data not transferring to new page
I'm a PHP learner. After an index.php page, the user goes to a login.php page. Both pages seem to be working.After logging in with username, password, and a special code, the user is transferred to
Dynamic memory problem
Hey,
file_put_contents and createimagefromjpeg
All,I do somethings and then I have the following code:file_put_contents('./test/'.$filename,$attachment_raw); //Give full path to $filenameI then do:$im = imagecreatefromjpeg($path_to_image_directory
Looking for help reading a .txt or .ini file and outputting the info.
I have a file called Info.ini and It has the following info:Code: [General]Online=0I would like it to be in a php file as just 0 if possible. Also how would I do this from php file to php file and let
array & querys help/advice.
Ok so here goes , I have a mysql database and basically here's what I need to do.// foreach store id// foreach product id {// query with where store id and product id// get price row for each
sql problems
I am having a small problem with my sql statement. it is inserting into 4 of the fields. fields it is inserting into:FirstLastemailpasswordit is saying the record has been added. is there something