Ok, I got back from the long weekend. Here is some of the code that is on the page so you can get a better idea of what is going on and what I want to do.
The first segment of code below is the actual html page where the people will be checking the checkboxes. The next segment of code will be the coldfusion page that processes the page.
<cfform method="post" name="form" action="app_send.cfm">
<tr><td colspan="2"><strong>Community/Volunteer/Work Activities<br> (Please indicate number of hours per week)</strong></td><td>9</td><td>10</td><td>11</td><td>12</td><td>PG</td><td>Participate in College?</td></tr>
<tr><td colspan="2"><input type="text" name="comm1" size="40"></td><td><input type="checkbox" name="comm19check" value="x"></td><td><input type="checkbox" name="comm110check" value="x"></td><td><input type=checkbox name="comm111check" value="x"></td><td><input type="checkbox" name="comm112check" value="x"></td><td><input type="checkbox" name="comm1pgcheck" value="x"></td><td><input type="checkbox" name="comm1partcheck" value="x"></td></tr>
<tr><td colspan="2"><input type="text" name="comm2" size=40></td><td><input type="checkbox" name="comm29check" value="x" ></td><td><input type="checkbox" name="comm210check" value="x"></td><td><input type="checkbox" name="comm211check" value="x"></td><td><input type="checkbox" name="comm212check" value="x"></td><td><input type="checkbox" name="comm2pgcheck" value="x"></td><td><input type="checkbox" name="comm2partcheck" value="x"></td></tr>
</table>
**************************************
* The above code goes on in the same *
* way for quite awhile. *
**************************************
<td align="right"><input type="image" src="/images/submit.gif" width="50" height="19" border="0" alt="Submit">
</cfform>
[highlight]
Ok, that was the first segment of code.
Here is the second segment which is also the coldfusion backend page.[/highlight]
[highlight]This is the only way I have figured out that I can get the page to go through, but I don't want to have hundreds of lines like this, plus there has got to be a better way to solve this problem.
<cfparam name="form.comm19check" default="">[/highlight]
<cfmail from = "#form.FNAME# #form.LNAME# <mail@mail.edu>"
to = "mail@mail.edu"
subject = "Online Application">
<cfmailpart type="html">
<h2>Online Application</h2>
<table width="640" cellspacing="0" cellpadding="5" border="0" style="font-family:times new roman;font-size:14px;">
<tr>
<td colspan="2">
<!-- Start of School/Work/Community Activities Data !-->
<table width="100%" cellspacing="1" cellpadding="5" border="0" bgcolor="004730" style="font-family:times new roman;font-size:14px;">
<tr>
<td colspan="8"><strong><font color="FFFFFF">Community/Volunteer/Work Activities</font></strong></td>
</tr>
<tr>
<td colspan="2" bgcolor="FFFFFF"> #form.comm1#</td><td bgcolor="FFFFFF">#form.comm19check#</td><td bgcolor="FFFFFF">#form.comm110check#</td><td bgcolor="FFFFFF">#form.comm111check#</td><td bgcolor="FFFFFF">#form.comm112check#</td><td bgcolor="FFFFFF">#form.comm1pgcheck#</td><td bgcolor="FFFFFF">#form.comm1partcheck#</td>
</tr>
<tr>
<td colspan="2" bgcolor="FFFFFF"> #form.comm2# </td><td bgcolor="FFFFFF">#form.comm29check#</td><td bgcolor="FFFFFF">#form.comm210check#</td><td bgcolor="FFFFFF">#form.comm211check#</td><td bgcolor="FFFFFF">#form.comm212check#</td><td bgcolor="FFFFFF">#form.comm2pgcheck#</td><td bgcolor="FFFFFF">#form.comm2partcheck#</td>
</tr>
<tr>
<td colspan="2" bgcolor="FFFFFF"> #form.comm3# </td><td bgcolor="FFFFFF">#form.comm39check#</td><td bgcolor="FFFFFF">#form.comm310check#</td><td bgcolor="FFFFFF">#form.comm311check#</td><td bgcolor="FFFFFF">#form.comm312check#</td><td bgcolor="FFFFFF">#form.comm3pgcheck#</td><td bgcolor="FFFFFF">#form.comm3partcheck#</td>
</tr>
<tr>
<td bgcolor="FFFFFF"><strong>School Clubs and Activities</strong> </td><td bgcolor="FFFFFF">Offices Held</td><td bgcolor="FFFFFF">9</td><td bgcolor="FFFFFF">10</td><td bgcolor="FFFFFF">11</td><td bgcolor="FFFFFF">12</td><td bgcolor="FFFFFF">PG</td><td bgcolor="FFFFFF">Participate in College?</td>
</tr>
<tr>
<td bgcolor="FFFFFF"> #form.club1# </td><td bgcolor="FFFFFF">#form.club1off#</td><td bgcolor="FFFFFF">#form.club19check#</td><td bgcolor="FFFFFF">#form.club110check#</td><td bgcolor="FFFFFF">#form.club111check#</td><td bgcolor="FFFFFF">#form.club112check#</td><td bgcolor="FFFFFF">#form.club1pgcheck#</td><td bgcolor="FFFFFF">#form.club1partcheck#</td>
</tr>
<tr>
<td bgcolor="FFFFFF"> #form.club2# </td><td bgcolor="FFFFFF">#form.club2off#</td><td bgcolor="FFFFFF">#form.club29check#</td><td bgcolor="FFFFFF">#form.club210check#</td><td bgcolor="FFFFFF">#form.club211check#</td><td bgcolor="FFFFFF">#form.club212check#</td><td bgcolor="FFFFFF">#form.club2pgcheck#</td><td bgcolor="FFFFFF">#form.club2partcheck#</td>
</tr>
<tr>
<td bgcolor="FFFFFF"> #form.club3# </td><td bgcolor="FFFFFF">#form.club3off#</td><td bgcolor="FFFFFF">#form.club39check#</td><td bgcolor="FFFFFF">#form.club310check#</td><td bgcolor="FFFFFF">#form.club311check#</td><td bgcolor="FFFFFF">#form.club312check#</td><td bgcolor="FFFFFF">#form.club3pgcheck#</td><td bgcolor="FFFFFF">#form.club3partcheck#</td>
</tr>
</table>
</cfmailpart>
</cfmail>
<cflocation url="/confirm">
Thanks for everyone's posts thus far!!