dfwalton
Programmer
- Jul 24, 2002
- 143
Here is my situation: I am entering timesheet information for all emps who worked a particular event. After selecting the event, I go to a page where the emp data is pulled from the db by <cfoutput query= blah>
I then have a form displaying and accepting data for each employee. Abbreviated, looks like this:
<cfoutput query=qryEmpInEvent>
<tr>
<form action= "blah" method = "post">
<td> #qryEmpInEvent.EmpName#</td>
<td> <input type="text" name="hours" </td>
<td> <input type="submit" value="Enter hours"</td>
</form>
</tr>
I would like to know if there is a way to not have the submit by line, but for all 35 emps per event.
Thanks in advance for your help.
David
I then have a form displaying and accepting data for each employee. Abbreviated, looks like this:
<cfoutput query=qryEmpInEvent>
<tr>
<form action= "blah" method = "post">
<td> #qryEmpInEvent.EmpName#</td>
<td> <input type="text" name="hours" </td>
<td> <input type="submit" value="Enter hours"</td>
</form>
</tr>
I would like to know if there is a way to not have the submit by line, but for all 35 emps per event.
Thanks in advance for your help.
David