Not sure if this is the problem, but you seem to have a nesting problem with
your <cfloop> at least that is what I am seeing. Does not seem to be closing
properly.

 <cfloop from="#getBooking.dCheckin#"to="#getBooking.dCheckout#" index="idx"
>
          <cfoutput>
            <td valign="top" class="day"><div align="center">
                <div><strong>#idx#</strong></div>
                <div>$
                  <input type="text" name="rate" size="5" class="formtext">
                </div>
              </div></td>
          </cfoutput>
          <cfset day_idx = day_idx + 1>
          <cfif day_idx EQ 7>
        </tr>
        <cfset day_idx = 0>
        <cfif idx LT getBooking.dCheckout>
        <tr>
</cfif>
          <!--- Now we need to do a pad at the end, just to make our
table "proper"  we can figure out how much the pad should be by
examining day_idx --->
          </cfif>
          </cfloop>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260035
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to