Sorry, after I read what I had written it doesn't seem very clear.
Here is my setup.
I have a webform that has text boxes, radio buttons and now check boxes.
What I would like is when the check boxes are checked their values are sent via email along with everything else. This is my code so far on the PHP side of things. You'll notice under section 2 is where I am trying to pass the array for the check boxes.
Modules:$HTTP_POST_VARS[$module[$a]<br>]
To give you an idea of my experience, I am two weeks into using PHP
<?
$message = <<<EOD
USER REQUEST FORM
==> SECTION 1: USER INFORMATION
What to do with the user: $HTTP_POST_VARS[Required_Mode]
Users Name: $HTTP_POST_VARS[Required_Users_Name]
Company: Northstar-at-Tahoe
Department: $HTTP_POST_VARS[Required_Department]
Phone: $HTTP_POST_VARS[Phone_Prefix]-$HTTP_POST_VARS[Phone_Ext]
Voice Mail: $HTTP_POST_VARS[Voice_Mail]
Manager: $HTTP_POST_VARS[Required_Manager]
Managers Email: $HTTP_POST_VARS[Required_Email_Address]
==> SECTION 2: JDEDWARDS
Users Class:$HTTP_POST_VARS[Required_JDEdwards]
Access to Which Modules:$HTTP_POST_VARS[$module[$a]<br>]
==> SECTION 3: CSS
Employee Code: $HTTP_POST_VARS[Employee_Code]
Security Level: $HTTP_POST_VARS[Security_Level]
==> SECTION 4: KRONOS TIME KEEPER
Kronos Department: $HTTP_POST_VARS[Kronos_Department]
User Class: $HTTP_POST_VARS[Kronos]
==> SECTION 5: NOVELL NETWORK
Similar Network Access as: $HTTP_POST_VARS[Novell_Department]
Network Password: $HTTP_POST_VARS[Network_Password]
==> SECTION 6: EMAIL/INTERNET REQUEST
Does Employee Require Email:$HTTP_POST_VARS[Required_Email]
Does Employees Computer Require E-Mail Program Installation :$HTTP_POST_VARS[Required_Email_Program]
If YES Explain:$HTTP_POST_VARS[Email_Explain]
Does Employee Require Internet Access: $HTTP_POST_VARS[Internet_Access]
==> SECTION 7: RESORT POS
Which Modules ?:$HTTP_POST_VARS[RTP]
Will this employee be responsible for closing the register at the end of the day?$HTTP_POST_VARS[Close_RTP]
EOD;
Then I have the headers for the email to go to the right person. As you can tell I am using $HTTP_POST_VARS for the responses from the web form.
So my question is this how do I pass the value(s) from the check box to my email set up above.
I can send you my web form as well to get an idea of what I have created. Thanks for taking care of a newbie 🙂