Thanks for the reply. This is what I have setup so far:
'Admin Page'
<FORM action="insert.cfm" method="post">
<select type="text" name="section1">
<option>less than 15 minutes</option>
<option>less than 30 minutes</option>
<option>less than 45 minutes</option>
<option>less than 60 minutes</option>
<option>more than 60 minutes</option>
</select>
<select type="text" name="section2">
<option>less than 15 minutes</option>
<option>less than 30 minutes</option>
<option>less than 45 minutes</option>
<option>less than 60 minutes</option>
<option>more than 60 minutes</option>
</select>
etc... to four sections
time tag here
date tag here
</form>
'Insert Page'
<CFQUERY NAME="insert1"
datasource="dbname">
insert into table1 (table1value, table1time, table1date)
values (#form.section1#, #form.time#, #form.date#)
</CFQUERY>
<CFQUERY NAME="insert2"
datasource="dbname">
insert into table2 (table2value, table2time, table2date)
values (#form.section2#, #form.time#, #form.date#)
</CFQUERY>
etc... for the four values of the form
Then the Insert Page spits out the entered values as verification on the page.
But alas I encounter and error...
ODBC Error Code = 37000 (Syntax error or access violation)
[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'less than 15 minutes'.
The error occurred while processing an element with a general identifier of (CFQUERY), occupying document position (2:1) to (3:23).
Sorry for the long post...and thanks for the help