Looping through Fields

2006-05-08 Thread Les Mizzell
When testing, form is sending... strNAME1, numCOST1 (test values Bob, 300) strNAME2, numCOST2 (test values John, 400) strNAME3, numCOST3 (test values Robert, 500) and however many total there my be as defined by #form.intTravelerCount# I've done a cfdump and confirmed that the fields are

RE: Looping through Fields

2006-05-08 Thread Brad Wood
The val() function returns an integer. Text cannot be converted to an integer and will output a 0. ~Brad -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Monday, May 08, 2006 4:44 PM To: CF-Talk Subject: Looping through Fields When testing, form is sending

Re: Looping through Fields

2006-05-08 Thread Les Mizzell
Brad Wood wrote: The val() function returns an integer. Text cannot be converted to an integer and will output a 0. Yup - that was the problem. I don't need to be working 16 hours straight, huh? I start to forget what I'm doing...