KeyserSoze1877
Programmer
Let see if I can explain this.
I have a table with the fields:
TestName, VoiceFile, Time01, Time 02......Time34
Each record is a test transaction.
The time fields records, well times in seconds.
Not all records have all 34 time fields filled. The last time is a 999.
So some records could end at Time12 and other Time27, etc...
Using a cfloop index=TimeHold from 1 to 34 I cant figure out how to display the times, I cant just use
<cfoutput>#Time##TimeHold#</cfoutput> that just doesnt work.
I am trying to avoid harcoding an array structure, that would have to build an array for each record. Is there a way to loop through the actual field names.
Does this make sense?
I have a table with the fields:
TestName, VoiceFile, Time01, Time 02......Time34
Each record is a test transaction.
The time fields records, well times in seconds.
Not all records have all 34 time fields filled. The last time is a 999.
So some records could end at Time12 and other Time27, etc...
Using a cfloop index=TimeHold from 1 to 34 I cant figure out how to display the times, I cant just use
<cfoutput>#Time##TimeHold#</cfoutput> that just doesnt work.
I am trying to avoid harcoding an array structure, that would have to build an array for each record. Is there a way to loop through the actual field names.
Does this make sense?