Flash Form w/ Checkbox

I need help getting my checkboxs to work in my Flash form. I don’t really know PHP but I was able to get all my input boxes to work so far based off kirupas tutorial. The checkboxs are giving me some problems. Below is my code and I’ve attached my files as well. Thanks in advance!

immeldesign.com/checkboxForm.zip

On my form movie clip with the instance name of form I have the code:


onClipEvent (data) {
	_root.nextFrame();
}

On my submit button the root timeline I have the following code


on (release) {
	// send variables in form movieclip (the textfields)
	// to email PHP page which will send the mail
	_root.form.loadVariables("email.php", "POST");
}

My php code looks like this:


<?php

//POST VARIABLES *************************************
$company = $_POST['company'];
$firstName = $_POST['firstName'];
$lastName = $_POST['lastName'];
$phone = $_POST['phone'];
$email = $_POST['email'];
$address = $_POST['address'];
$city = $_POST['city'];
$state = $_POST['state'];
$zip = $_POST['zip'];
$hear = $_POST['hear'];


//EMAIL VARIABLES ************************************
$sendTo = "email@email.com";
$subject = "Information Request";
$headers = "This form was submitted on immeldesign.com";
$message = "$company
$firstName
$lastName
$phone
$email
$address
$city
$state
$zip
$hear";


//send the email **************************************
mail("$sendTo", "$subject", "$message", "$headers");


?>